JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
change admin_image image filenames for adblockplus
authorJason Woofenden <jason@jasonwoof.com>
Sun, 1 Sep 2013 04:18:49 +0000 (00:18 -0400)
committerJason Woofenden <jason@jasonwoof.com>
Sun, 1 Sep 2013 04:18:49 +0000 (00:18 -0400)
admin_images.php

index b57f2a4..90a99c0 100644 (file)
@@ -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');
                                }