]> git.mxchange.org Git - friendica-addons.git/commitdiff
privacy_image_cache: removed experimental resize
authorMichael Vogel <icarus@dabo.de>
Wed, 25 Jul 2012 22:25:43 +0000 (00:25 +0200)
committerMichael Vogel <icarus@dabo.de>
Wed, 25 Jul 2012 22:25:43 +0000 (00:25 +0200)
privacy_image_cache/privacy_image_cache.php

index 963b8f77adb10ec65edb82212cbaff9ce53ce390..2309ff22e91e5c23563dbf58a6fa2e5e16048b5c 100644 (file)
@@ -48,7 +48,7 @@ function privacy_image_cache_init() {
 
        $cache = get_config('system','itemcache');
        if (($cache != '') and is_dir($cache)) {
-               $cachefile = $cache."/".hash("md5", $urlhash);
+               $cachefile = $cache."/".hash("md5", $_REQUEST['url']);
                if (file_exists($cachefile)) {
                        $img_str = file_get_contents($cachefile);
 
@@ -129,7 +129,7 @@ function privacy_image_cache_init() {
                        $img = new Photo($img_str);
                        if($img->is_valid()) {
                                $img->store(0, 0, $urlhash, $_REQUEST['url'], '', 100);
-                               $img->scaleImage(1000); // Test
+                               //$img->scaleImage(1000); // Test
                                $img_str = $img->imageString();
                        }
                        $mime = "image/jpeg";