diff options
author | Sam Reed <reedy@users.mediawiki.org> | 2011-04-18 13:53:24 +0000 |
---|---|---|
committer | Sam Reed <reedy@users.mediawiki.org> | 2011-04-18 13:53:24 +0000 |
commit | 9c19cb6e3851c3a7b1f18850e610637f8e18be4a (patch) | |
tree | 9424576e42e9799178a933963594893a7c6e0b1d /includes/Message.php | |
parent | 1f86001203409fd700c8b9f211838a11beabbe6f (diff) | |
download | mediawikicore-9c19cb6e3851c3a7b1f18850e610637f8e18be4a.tar.gz mediawikicore-9c19cb6e3851c3a7b1f18850e610637f8e18be4a.zip |
Followup r86304
Things won't just happily accept a ParserOutput object when they were getting strings before
Add missing calling parameter
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/86311
Diffstat (limited to 'includes/Message.php')
-rw-r--r-- | includes/Message.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/Message.php b/includes/Message.php index 8c8f4b4480d2..69a48b854911 100644 --- a/includes/Message.php +++ b/includes/Message.php @@ -432,7 +432,7 @@ class Message { * @return string Wikitext parsed into HTML */ protected function parseText( $string ) { - return MessageCache::singleton()->parse( $string, /*linestart*/true, $this->interface, $this->language ); + return MessageCache::singleton()->parse( $string, null, /*linestart*/true, $this->interface, $this->language )->getText(); } /** |