X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=admin_images.php;h=90a99c00399ccbc37ab81f626a4cc3363e477e22;hb=426a14728194dbd7de892bf2cfd2093b89106b6a;hp=b57f2a4115502c151cfb15e9b1bf582a6d7a2e11;hpb=2d7fb7dfee13a2eff851ec6df2574856d1cca033;p=wfpl-cms.git 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'); }