Index: trunk/phase3/includes/ExternalStoreHttp.php |
— | — | @@ -6,8 +6,8 @@ |
7 | 7 | */ |
8 | 8 | class ExternalStoreHttp { |
9 | 9 | /* Fetch data from given URL */ |
10 | | - function fetchFromURL($url) { |
11 | | - $ret = file_get_contents( $url ); |
| 10 | + function fetchFromURL( $url ) { |
| 11 | + $ret = Http::get( $url ); |
12 | 12 | return $ret; |
13 | 13 | } |
14 | 14 | |