Followup r83862, add notation that page count will be added if appropriate
[lhc/web/wiklou.git] / includes / api / ApiFormatJson.php
index d138548..e3755d7 100644 (file)
@@ -1,9 +1,8 @@
 <?php
-
 /**
- * Created on Sep 19, 2006
  *
- * API for MediaWiki 1.8+
+ *
+ * Created on Sep 19, 2006
  *
  * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
  *
@@ -21,6 +20,8 @@
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
  */
 
 if ( !defined( 'MEDIAWIKI' ) ) {
@@ -70,7 +71,7 @@ class ApiFormatJson extends ApiFormatBase {
                }
                $this->printText(
                        $prefix .
-                       FormatJson::encode( $this->getResultData(),     $this->getIsHtml() ) .
+                       FormatJson::encode( $this->getResultData(), $this->getIsHtml() ) .
                        $suffix
                );
        }