Index: trunk/extensions/IncludeWP/IncludeWP.class.php |
— | — | @@ -30,10 +30,10 @@ |
31 | 31 | * No LSB in pre-5.3 PHP *sigh*. |
32 | 32 | * This is to be refactored as soon as php >=5.3 becomes acceptable. |
33 | 33 | */ |
34 | | - public static function staticInit( Parser &$wgParser ) { |
| 34 | + public static function staticInit( Parser &$parser ) { |
35 | 35 | $className = __CLASS__; |
36 | 36 | $instance = new $className(); |
37 | | - return $instance->init( $wgParser ); |
| 37 | + return $instance->init( $parser ); |
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |