* Normalize titles in Special:Randomincategory
[lhc/web/wiklou.git] / includes / ExternalStoreHttp.php
index f818de1..cff6c4d 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 /**
  *
- * @package MediaWiki
  *
  * Example class for HTTP accessable external objects
  *
@@ -10,9 +9,9 @@
 class ExternalStoreHttp {
        /* Fetch data from given URL */
        function fetchFromURL($url) {
-        ini_set( "allow_url_fopen", true );
-        $ret = file_get_contents( $url );
-        ini_set( "allow_url_fopen", false );
+       ini_set( "allow_url_fopen", true );
+       $ret = file_get_contents( $url );
+       ini_set( "allow_url_fopen", false );
                return $ret;
        }
 
@@ -20,4 +19,4 @@ class ExternalStoreHttp {
         * whatever, for initial ext storage
         */
 }
-?>
+