Issue:Dpl 1.9.0 throws fatal error with MW 1.10.1
From FollowTheScore
Revision as of 01:31, 24 December 2009 by F.middleton (talk | contribs) (New page: {{Issue |Type = Bug |Extension = DPL |Version = 1.9.0 |Description = dpl 1.9.0 causes fatal error to be thrown with MW 1.10.1 |Status = open }} == Problem == [23-D...)
Description: | dpl 1.9.0 causes fatal error to be thrown with MW 1.10.1 |
Extension / Version: | DPL / 1.9.0 |
Type / Status: | Bug / open |
Problem
[23-Dec-2009 18:18:37] PHP Catchable fatal error: Object of class Title could not be converted to string in /..../mediawiki-1.10.1/includes/Revision.php on line 322
Pages render just fine with DPL 1.5.1. Here's the code in Revision.php around line 322
$this->mDeleted = isset( $row['deleted'] ) ? intval( $row['deleted'] ) : 0; $this->mSize = isset( $row['len'] ) ? intval( $row['len'] ) : null; // Enforce spacing trimming on supplied text $this->mComment = isset( $row['comment'] ) ? trim( strval( $row['comment'] ) ) : null; 322 $this->mText = isset( $row['text'] ) ? rtrim( strval( $row['text'] ) ) : null; $this->mTextRow = null; $this->mTitle = null; # Load on demand if needed $this->mCurrent = false; # If we still have no len_size, see it we have the text to figure it out if ( !$this->mSize ) $this->mSize = is_null($this->mText) ? null : strlen($this->mText); } else { throw new MWException( 'Revision constructor passed invalid row format.' ); } }