From: Jason Woofenden Date: Sun, 1 Sep 2013 04:18:49 +0000 (-0400) Subject: change admin_image image filenames for adblockplus X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl-cms.git;a=commitdiff_plain;h=426a14728194dbd7de892bf2cfd2093b89106b6a change admin_image image filenames for adblockplus --- 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'); }