https://bugzilla.wikimedia.org/show_bug.cgi?id=18170
--- Comment #1 from Mike Wacker <[email protected]> 2009-03-26 05:00:06 UTC --- Ok, so I found a fix. It's so simple I'm just going to describe it. Go to line of 2981 of Article.php. Add an ampersand before the second argument. return $wgParser->preSaveTransform( $text, $this->mTitle, $wgUser, ParserOptions::newFromUser( $wgUser ) ); should now be return $wgParser->preSaveTransform( $text, &$this->mTitle, $wgUser, ParserOptions::newFromUser( $wgUser ) ); -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
