X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2Flanguage%2Falltrans.php;h=d0e6e84986671d6a734bf8f86343d020dd54798b;hb=11e59956ae7c8a7efd57a4dd0f7e7788e7fe9e58;hp=b537f9b70c53fdd6b1ae92bb26a51863c2527c45;hpb=ee3f8ee9fc98574803e69f3479e209f5b80536de;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/language/alltrans.php b/maintenance/language/alltrans.php index b537f9b70c..d0e6e84986 100644 --- a/maintenance/language/alltrans.php +++ b/maintenance/language/alltrans.php @@ -17,11 +17,18 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * + * @file * @ingroup MaintenanceLanguage */ -require_once( __DIR__ . '/../Maintenance.php' ); +require_once __DIR__ . '/../Maintenance.php'; +/** + * Maintenance script that gets all messages as defined by the + * English language file. + * + * @ingroup MaintenanceLanguage + */ class AllTrans extends Maintenance { public function __construct() { parent::__construct(); @@ -37,4 +44,4 @@ class AllTrans extends Maintenance { } $maintClass = "AllTrans"; -require_once( RUN_MAINTENANCE_IF_MAIN ); +require_once RUN_MAINTENANCE_IF_MAIN;