Index: trunk/phase3/includes/Linker.php |
— | — | @@ -1997,9 +1997,12 @@ |
1998 | 1998 | * @param $fname String Name of called method |
1999 | 1999 | * @param $args Array Arguments to the method |
2000 | 2000 | */ |
2001 | | - function __call( $fname, $args ) { |
| 2001 | + public function __call( $fname, $args ) { |
2002 | 2002 | return call_user_func_array( array( 'Linker', $fname ), $args ); |
2003 | 2003 | } |
2004 | 2004 | |
| 2005 | + public static function normalizeSubpageLink( $contextTitle, $target, &$text ) { |
| 2006 | + return Linker::normalizeSubpageLink( $contextTitle, $target, $text ); |
| 2007 | + } |
2005 | 2008 | } |
2006 | 2009 | |