From 426a14728194dbd7de892bf2cfd2093b89106b6a Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Sun, 1 Sep 2013 00:18:49 -0400 Subject: [PATCH] change admin_image image filenames for adblockplus --- admin_images.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin_images.php b/admin_images.php index b57f2a4..90a99c0 100644 --- a/admin_images.php +++ b/admin_images.php @@ -135,7 +135,7 @@ function admin_images_main_display($id) { continue; } list($max_width, $max_height) = explode('x', $max_hw); - $src = str_replace('.', "-$max_hw.", $big_src); + $src = str_replace('.', "-$max_width-$max_height.", $big_src); $dimensions = image_dimensions($src); if($dimensions) { list($width, $height) = explode('x', $dimensions); @@ -193,7 +193,7 @@ function admin_images_main_form($id = false) { continue; } list($max_width, $max_height) = explode('x', $max_hw); - $src = str_replace('.', "-$max_hw.", $big_src); + $src = str_replace('.', "-$max_width-$max_height.", $big_src); if(($_FILES['image'] && $_FILES['image']['error'] == 0) || !file_exists($src)) { imagemagick_convert($big_src, $src, "-geometry $max_hw", 'Resizing image'); } -- 1.7.10.4