Move up to date the parser test expectation.
[lhc/web/wiklou.git] / maintenance / fetchText.php
index b4db724..7479fa1 100644 (file)
@@ -29,12 +29,12 @@ class FetchText extends Maintenance {
        }
 
        /*
-     * returns a string containing the following in order:
-     *   textid
-        *   \n
-        *   length of text (-1 on error = failure to retrieve/unserialize/gunzip/etc)
-        *   \n
-        *   text  (may be empty)
+        * returns a string containing the following in order:
+        *       textid
+        *       \n
+        *       length of text (-1 on error = failure to retrieve/unserialize/gunzip/etc)
+        *       \n
+        *       text  (may be empty)
         *
         * note that that the text string itself is *not* followed by newline
         */
@@ -59,13 +59,13 @@ class FetchText extends Maintenance {
                        $this->output( $textId . "\n" . $textLen . "\n" . $text );
                }
        }
-       
+
        /**
-        * May throw a database error if, say, the server dies during query.
+        * May throw a database error if, say, the server dies during query.
         * @param $db Database object
         * @param $id int The old_id
         * @return String
-        */
+        */
        private function doGetText( $db, $id ) {
                $id = intval( $id );
                $row = $db->selectRow( 'text',