diff options
author | Chad Horohoe <demon@users.mediawiki.org> | 2009-08-03 21:56:41 +0000 |
---|---|---|
committer | Chad Horohoe <demon@users.mediawiki.org> | 2009-08-03 21:56:41 +0000 |
commit | 567f244e3611c9e020bc69446a77a10c21257f84 (patch) | |
tree | 785480b6e61c059c3c24ffb50a43446103c870bf /maintenance/rebuildmessages.php | |
parent | 5a9d854a8fdc68c48e7c21eb0e667ef184cf38b1 (diff) | |
download | mediawikicore-567f244e3611c9e020bc69446a77a10c21257f84.tar.gz mediawikicore-567f244e3611c9e020bc69446a77a10c21257f84.zip |
Revert r54244 which was stupid and fix this properly. Require commandLine.inc/Maintenance.php using the full path every time.
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/54312
Diffstat (limited to 'maintenance/rebuildmessages.php')
-rw-r--r-- | maintenance/rebuildmessages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maintenance/rebuildmessages.php b/maintenance/rebuildmessages.php index 2afbc3fcd489..546d52140f71 100644 --- a/maintenance/rebuildmessages.php +++ b/maintenance/rebuildmessages.php @@ -20,7 +20,7 @@ * @ingroup Maintenance */ -require_once( "Maintenance.php" ); +require_once( dirname(__FILE__) . '/Maintenance.php' ); class RebuildMessages extends Maintenance { public function __construct() { |