mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 07:54:13 +00:00
883a0e5cee
I was getting notices like this when browsing to Special:Notifications: "Did not find alias for special page 'Notifications'. Perhaps no aliases are defined for it?" This changeset should fix it. (Thanks Reedy) Change-Id: I4ec41a4c37ef13bc332ed6ee2848fa72641c1892
16 lines
239 B
PHP
16 lines
239 B
PHP
<?php
|
|
/**
|
|
* Aliases for special pages for extension Echo
|
|
*
|
|
* @file
|
|
* @ingroup Extensions
|
|
*/
|
|
|
|
$specialPageAliases = array();
|
|
|
|
/** English (English) */
|
|
$specialPageAliases['en'] = array(
|
|
'Notifications' => array( 'Notifications' )
|
|
);
|
|
|