Index: trunk/extensions/FormatNum/FormatNum.hooks.php |
— | — | @@ -1,8 +1,8 @@ |
2 | 2 | <?php |
3 | 3 | class FormatNumHooks { |
4 | | - function efFormatNumParserFunction_Setup( $parser ) { |
| 4 | + public function efFormatNumParserFunction_Setup( $parser ) { |
5 | 5 | # Set a function hook associating the "example" magic word with our function |
6 | | - $parser->setFunctionHook( 'formatnum', 'efFormatNumParserFunction_Render' ); |
| 6 | + $parser->setFunctionHook( 'formatnum', 'FormatNumHooks::efFormatNumParserFunction_Render' ); |
7 | 7 | return true; |
8 | 8 | } |
9 | 9 | |