Use local context instead of global variables
[lhc/web/wiklou.git] / maintenance / fetchText.php
index ed2778b..067ffe4 100644 (file)
@@ -1,6 +1,7 @@
 <?php
 /**
  * Communications protocol...
+ * This is used by dumpTextPass.php when the --spawn option is present.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -62,7 +63,7 @@ class FetchText extends Maintenance {
 
        /**
         * May throw a database error if, say, the server dies during query.
-        * @param $db Database object
+        * @param $db DatabaseBase object
         * @param $id int The old_id
         * @return String
         */
@@ -81,4 +82,4 @@ class FetchText extends Maintenance {
 }
 
 $maintClass = "FetchText";
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );