* Special:BlankPage is not part of the API
* Use CamelCase for special pages * No need to list BlankPage, that will really confuse people (although I realize Domas finds that entertaining) * Slightly more descriptive RELEASE-NOTE
This commit is contained in:
parent
a0d0785f8b
commit
bc151d537b
3 changed files with 3 additions and 2 deletions
|
|
@ -177,6 +177,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
|
|||
* Add meta generator tag to HTML output
|
||||
* Two new hooks, ExtendJSGlobalVars and wfMessageCacheReplace added
|
||||
* MediawikiPerformAction hook is now passed the Mediawiki object
|
||||
* Added blank special page Special:BlankPage for benchmarking, etc.
|
||||
|
||||
=== Bug fixes in 1.13 ===
|
||||
|
||||
|
|
@ -484,7 +485,6 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
|
|||
* (bug 14651) apprefix and similar parameters are now canonicalized
|
||||
* Added clprop=timestamp to prop=categories
|
||||
* (bug 14678) API errors now respects $wgShowExceptionDetails and $wgShowSQLErrors
|
||||
* Added blank special page
|
||||
|
||||
=== Languages updated in 1.13 ===
|
||||
|
||||
|
|
|
|||
|
|
@ -136,7 +136,7 @@ class SpecialPage
|
|||
'Categories' => array( 'SpecialPage', 'Categories' ),
|
||||
'Export' => array( 'SpecialPage', 'Export' ),
|
||||
'Version' => array( 'SpecialPage', 'Version' ),
|
||||
'Blankpage' => array( 'SpecialPage', 'Blankpage' ),
|
||||
'Blankpage' => array( 'UnlistedSpecialPage', 'Blankpage' ),
|
||||
'Allmessages' => array( 'SpecialPage', 'Allmessages' ),
|
||||
'Log' => array( 'SpecialPage', 'Log' ),
|
||||
'Blockip' => array( 'SpecialPage', 'Blockip', 'block' ),
|
||||
|
|
|
|||
|
|
@ -433,6 +433,7 @@ $specialPageAliases = array(
|
|||
'MergeHistory' => array( 'MergeHistory' ),
|
||||
'Filepath' => array( 'FilePath' ),
|
||||
'Invalidateemail' => array( 'InvalidateEmail' ),
|
||||
'Blankpage' => array( 'BlankPage' ),
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue