From 8a99c91b99d3035cd1d9c6a9b64740cc31bff014 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Fri, 18 Nov 2011 02:48:39 -0500 Subject: [PATCH] fix image max size --- admin_images.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin_images.php b/admin_images.php index d43255b..b57f2a4 100644 --- a/admin_images.php +++ b/admin_images.php @@ -23,8 +23,8 @@ define('ADMIN_IMAGES_DB_FIELDS', 'image,name,caption,sizes'); # location of this script. IT MUST END WITH A SLASH $GLOBALS['upload_directory'] = 'cms_images/'; -$GLOBALS['image_max_width'] = '596'; -$GLOBALS['image_max_height'] = '1600'; +$GLOBALS['image_max_width'] = '704'; +$GLOBALS['image_max_height'] = '1900'; $GLOBALS['image_thumb_max_width'] = '70'; $GLOBALS['image_thumb_max_height'] = '70'; $GLOBALS['image_file_name'] = uniqid() . getmypid() . '.jpg'; # comment this out to use uploader's filename -- 1.7.10.4