* Remove unsightly "_" from namespace in Special:Allpages, Special:Prefixindex
This commit is contained in:
parent
64a0bccb6d
commit
0ffa85fbae
3 changed files with 3 additions and 2 deletions
|
|
@ -96,6 +96,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
|
|||
of deleted revision data
|
||||
* Added 'UndeleteShowRevision' hook in Special:Undelete
|
||||
* Error message on attempt to view invalid or missing deleted revisions
|
||||
* Remove unsightly "_" from namespace in Special:Allpages, Special:Prefixindex
|
||||
|
||||
|
||||
== Languages updated ==
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ function wfSpecialAllpages( $par=NULL, $specialPage ) {
|
|||
$namespace = 0;
|
||||
|
||||
$wgOut->setPagetitle( $namespace > 0 ?
|
||||
wfMsg( 'allinnamespace', $namespaces[$namespace] ) :
|
||||
wfMsg( 'allinnamespace', str_replace( '_', ' ', $namespaces[$namespace] ) ) :
|
||||
wfMsg( 'allarticles' )
|
||||
);
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ function wfSpecialPrefixIndex( $par=NULL, $specialPage ) {
|
|||
$namespace = 0;
|
||||
|
||||
$wgOut->setPagetitle( $namespace > 0 ?
|
||||
wfMsg( 'allinnamespace', $namespaces[$namespace] ) :
|
||||
wfMsg( 'allinnamespace', str_replace( '_', ' ', $namespaces[$namespace] ) ) :
|
||||
wfMsg( 'allarticles' )
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue