Index: trunk/extensions/ParserFunctions/ParserFunctions.php |
— | — | @@ -6,13 +6,11 @@ |
7 | 7 | |
8 | 8 | $wgExtensionFunctions[] = 'wfSetupParserFunctions'; |
9 | 9 | $wgExtensionCredits['parserhook'][] = array( |
10 | | - 'name' => 'ParserFunctions', |
11 | | - 'version' => '1.1.2', |
12 | | - 'svn-date' => '$LastChangedDate$', |
13 | | - 'svn-revision' => '$LastChangedRevision$', |
14 | | - 'url' => 'http://meta.wikimedia.org/wiki/Help:ParserFunctions', |
15 | | - 'author' => 'Tim Starling', |
16 | | - 'description' => 'Enhance parser with logical functions', |
| 10 | + 'name' => 'ParserFunctions', |
| 11 | + 'version' => '1.1.1', |
| 12 | + 'url' => 'http://meta.wikimedia.org/wiki/ParserFunctions', |
| 13 | + 'author' => 'Tim Starling', |
| 14 | + 'description' => 'Enhance parser with logical functions', |
17 | 15 | 'descriptionmsg' => 'pfunc_desc', |
18 | 16 | ); |
19 | 17 | |
— | — | @@ -330,7 +328,7 @@ |
331 | 329 | } |
332 | 330 | |
333 | 331 | function ifexistCommon( &$parser, $frame, $title = '', $then = '', $else = '' ) { |
334 | | - $title = Title::newFromText( urldecode( $title ) ); |
| 332 | + $title = Title::newFromText( $title ); |
335 | 333 | if ( $title ) { |
336 | 334 | if( $title->getNamespace() == NS_MEDIA ) { |
337 | 335 | /* If namespace is specified as NS_MEDIA, then we want to |
Property changes on: trunk/extensions/ParserFunctions/ParserFunctions.php |
___________________________________________________________________ |
Deleted: svn:keywords |
338 | 336 | - LastChangedDate LastChangedRevision |