]> git.mxchange.org Git - friendica-addons.git/commitdiff
Merge remote branch 'upstream/master'
authorMichael Vogel <icarus@dabo.de>
Sun, 10 Jun 2012 23:29:35 +0000 (01:29 +0200)
committerMichael Vogel <icarus@dabo.de>
Sun, 10 Jun 2012 23:29:35 +0000 (01:29 +0200)
privacy_image_cache/privacy_image_cache.php

index f179a7ba21ab55bb1ccb4f7d08f42ff83c2bf3e7..d3202c4d751d9222e2b88f9e90e4495544b60cbe 100644 (file)
@@ -30,7 +30,12 @@ function privacy_image_cache_module() {}
 
 
 function privacy_image_cache_init() {
-    $urlhash = 'pic:' . sha1($_REQUEST['url']);
+       if(function_exists('header_remove')) {
+               header_remove('Pragma');
+               header_remove('pragma');
+       }
+
+       $urlhash = 'pic:' . sha1($_REQUEST['url']);
     $r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' LIMIT 1", $urlhash );
     if (count($r)) {
         $img_str = $r[0]['data'];
@@ -90,6 +95,8 @@ function privacy_image_cache_init() {
  */
 function privacy_image_cache_is_local_image($url) {
     if ($url[0] == '/') return true;
+       if (strtolower(substr($url, 0, 5)) == "data:") return true;
+
        // links normalised - bug #431
     $baseurl = normalise_link(get_app()->get_baseurl());
        $url = normalise_link($url);