replace TYPE= with ENGINE=, (supported since 4.0, TYPE deprecated since 4.1)
[lhc/web/wiklou.git] / includes / ExternalStoreHttp.php
index f818de1..daf62cc 100644 (file)
@@ -10,9 +10,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;
        }