Updated library to use cURL instead of file_get_contents

This commit is contained in:
Evan Seguin
2012-07-19 10:50:31 -07:00
parent 04f9c98ad9
commit 1c503f13ff
3 changed files with 24 additions and 17 deletions

View File

@@ -91,10 +91,10 @@ class UrlUtils {
}
public static function generateClientHeaders() {
$headers = "User-Agent: mashape-php/1.0: " . "\r\n";
$headers = "User-Agent: mashape-php/1.0: ";
return $headers;
}
}
?>
?>