Remove last remainig use in core of Title::escapeFullURL()
This was deprecated in MediaWiki 1.19. Change-Id: I21a46a35e449b81d5999420add91d7664fcf5f1d
This commit is contained in:
parent
8138ad179d
commit
8d0106d585
1 changed files with 1 additions and 1 deletions
|
|
@ -250,7 +250,7 @@ class CoreParserFunctions {
|
|||
static function localurl( $parser, $s = '', $arg = null ) { return self::urlFunction( 'getLocalURL', $s, $arg ); }
|
||||
static function localurle( $parser, $s = '', $arg = null ) { return self::urlFunction( 'escapeLocalURL', $s, $arg ); }
|
||||
static function fullurl( $parser, $s = '', $arg = null ) { return self::urlFunction( 'getFullURL', $s, $arg ); }
|
||||
static function fullurle( $parser, $s = '', $arg = null ) { return self::urlFunction( 'escapeFullURL', $s, $arg ); }
|
||||
static function fullurle( $parser, $s = '', $arg = null ) { return htmlspecialchars( self::urlFunction( 'getFullURL', $s, $arg ) ); }
|
||||
static function canonicalurl( $parser, $s = '', $arg = null ) { return self::urlFunction( 'getCanonicalURL', $s, $arg ); }
|
||||
static function canonicalurle( $parser, $s = '', $arg = null ) { return self::urlFunction( 'escapeCanonicalURL', $s, $arg ); }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue