`$fs_protocol` will need to be changed to point to the `fs_protocol` once ready, instead of `cat`
27 lines
588 B
PHP
27 lines
588 B
PHP
<?php
|
|
/**
|
|
* Aliases for Special:Erstifahrt
|
|
|
|
* @file
|
|
* @ingroup Extensions
|
|
* @author Björn Kinscher
|
|
* @copyright © 2010 Björn Kinscher
|
|
* @license GNU General Public Licence 2.0 or later
|
|
|
|
*/
|
|
|
|
$aliases = array();
|
|
|
|
/** English
|
|
*/
|
|
$aliases['en'] = array(
|
|
'UserImage' => array( 'UserImage' ),
|
|
'CleanUserImageCache'=> array('CleanUserImageCache'),
|
|
'ConvertProtocol' => array('ConvertProtocol'),
|
|
);
|
|
|
|
$aliases['de'] = array(
|
|
'UserImage' => array( 'UserImage' ),
|
|
'CleanUserImageCache'=> array('CleanUserImageCache'),
|
|
'ConvertProtocol' => array('ConvertProtocol'),
|
|
);
|