* (bug 11462) Fix typo in LanguageGetSpecialPageAliases hook name
This commit is contained in:
parent
1a45c87c47
commit
f561740802
8 changed files with 8 additions and 7 deletions
|
|
@ -72,6 +72,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
|
|||
* (bug 11450) Fix creation of objectcache table on upgrade
|
||||
* Fix namespace selection after submit of Special:Newpages
|
||||
* Make input form of Special:Newpages nicer for RTL wikis
|
||||
* (bug 11462) Fix typo in LanguageGetSpecialPageAliases hook name
|
||||
|
||||
|
||||
=== API changes in 1.12 ===
|
||||
|
|
|
|||
|
|
@ -1187,7 +1187,7 @@ class Language {
|
|||
$this->load();
|
||||
if ( !isset( $this->mExtendedSpecialPageAliases ) ) {
|
||||
$this->mExtendedSpecialPageAliases = $this->specialPageAliases;
|
||||
wfRunHooks( 'LangugeGetSpecialPageAliases',
|
||||
wfRunHooks( 'LanguageGetSpecialPageAliases',
|
||||
array( &$this->mExtendedSpecialPageAliases, $this->getCode() ) );
|
||||
}
|
||||
return $this->mExtendedSpecialPageAliases;
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ $linkTrail = '/^([a-zæøå]+)(.*)$/sDu';
|
|||
* listed alias will be used as the default. Aliases from the fallback
|
||||
* localisation (usually English) will be included by default.
|
||||
*
|
||||
* This array may be altered at runtime using the LangugeGetSpecialPageAliases
|
||||
* This array may be altered at runtime using the LanguageGetSpecialPageAliases
|
||||
* hook.
|
||||
*/
|
||||
$specialPageAliases = array(
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ $linkTrail = '/^([äöüßa-z]+)(.*)$/sDu';
|
|||
* listed alias will be used as the default. Aliases from the fallback
|
||||
* localisation (usually English) will be included by default.
|
||||
*
|
||||
* This array may be altered at runtime using the LangugeGetSpecialPageAliases
|
||||
* This array may be altered at runtime using the LanguageGetSpecialPageAliases
|
||||
* hook.
|
||||
*/
|
||||
$specialPageAliases = array(
|
||||
|
|
|
|||
|
|
@ -348,7 +348,7 @@ $magicWords = array(
|
|||
* listed alias will be used as the default. Aliases from the fallback
|
||||
* localisation (usually English) will be included by default.
|
||||
*
|
||||
* This array may be altered at runtime using the LangugeGetSpecialPageAliases
|
||||
* This array may be altered at runtime using the LanguageGetSpecialPageAliases
|
||||
* hook.
|
||||
*/
|
||||
$specialPageAliases = array(
|
||||
|
|
|
|||
|
|
@ -264,7 +264,7 @@ $magicWords = array(
|
|||
* listed alias will be used as the default. Aliases from the fallback
|
||||
* localisation (usually English) will be included by default.
|
||||
*
|
||||
* This array may be altered at runtime using the LangugeGetSpecialPageAliases
|
||||
* This array may be altered at runtime using the LanguageGetSpecialPageAliases
|
||||
* hook.
|
||||
*/
|
||||
$specialPageAliases = array(
|
||||
|
|
|
|||
|
|
@ -213,7 +213,7 @@ $magicWords = array(
|
|||
* listed alias will be used as the default. Aliases from the fallback
|
||||
* localisation (usually English) will be included by default.
|
||||
*
|
||||
* This array may be altered at runtime using the LangugeGetSpecialPageAliases
|
||||
* This array may be altered at runtime using the LanguageGetSpecialPageAliases
|
||||
* hook.
|
||||
*/
|
||||
$specialPageAliases = array(
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ $namespaceAliases = array(
|
|||
* listed alias will be used as the default. Aliases from the fallback
|
||||
* localisation (usually English) will be included by default.
|
||||
*
|
||||
* This array may be altered at runtime using the LangugeGetSpecialPageAliases
|
||||
* This array may be altered at runtime using the LanguageGetSpecialPageAliases
|
||||
* hook.
|
||||
*/
|
||||
$specialPageAliases = array(
|
||||
|
|
|
|||
Loading…
Reference in a new issue