This commit is contained in:
friendica 2013-04-03 16:29:13 -07:00
commit 8b51ffefc0
20 changed files with 18099 additions and 24066 deletions

View file

@ -401,6 +401,7 @@ if(! class_exists('App')) {
private $db;
private $curl_code;
private $curl_content_type;
private $curl_headers;
private $cached_profile_image;
@ -673,6 +674,14 @@ if(! class_exists('App')) {
return $this->curl_code;
}
function set_curl_content_type($content_type) {
$this->curl_content_type = $content_type;
}
function get_curl_content_type() {
return $this->curl_content_type;
}
function set_curl_headers($headers) {
$this->curl_headers = $headers;
}