privacy_image_cache: removed experimentual resize of pictures

This commit is contained in:
Michael Vogel 2012-07-25 23:44:57 +02:00
parent cd8944cdcc
commit 88048bc18e
1 changed files with 7 additions and 7 deletions

View File

@ -80,13 +80,13 @@ function privacy_image_cache_init() {
if ($mime == "") $mime = "image/jpeg";
// Test
if ($mime == "image/jpeg") {
$img = new Photo($img_str);
if($img->is_valid()) {
$img->scaleImage(1000);
$img_str = $img->imageString();
}
}
//if ($mime == "image/jpeg") {
// $img = new Photo($img_str);
// if($img->is_valid()) {
// $img->scaleImage(1000);
// $img_str = $img->imageString();
// }
//}
} else {
// It shouldn't happen but it does - spaces in URL
$_REQUEST['url'] = str_replace(" ", "+", $_REQUEST['url']);