From 86a5b6c87f7537b1d729503b851736e3df53c3bc Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Tue, 8 Feb 2011 12:19:59 +0000 Subject: [PATCH] Merge r81725 from 1.17wmf1: add parent constructor call so $IP is set properly --- maintenance/mergeMessageFileList.php | 1 + 1 file changed, 1 insertion(+) diff --git a/maintenance/mergeMessageFileList.php b/maintenance/mergeMessageFileList.php index 994f9bbbd6..8cfefcbd7e 100644 --- a/maintenance/mergeMessageFileList.php +++ b/maintenance/mergeMessageFileList.php @@ -31,6 +31,7 @@ $mmfl = false; class MergeMessageFileList extends Maintenance { function __construct() { + parent::__construct(); $this->addOption( 'list-file', 'A file containing a list of extension setup files, one per line.', false, true ); $this->addOption( 'output', 'Send output to this file (omit for stdout)', false, true ); $this->mDescription = 'Merge $wgExtensionMessagesFiles from various extensions to produce a ' . -- 2.20.1