From ec1e07d0badf152712809c1714bf104dfc545477 Mon Sep 17 00:00:00 2001 From: Damian Taggart Date: Fri, 14 Nov 2014 15:07:47 -0700 Subject: [PATCH] 1.0 release --- README.md | 2 +- mthumb.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 579c240..15b63e9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -mthumb +mThumb (a secure PHP image resize script) ====== A secure, slimmed down version of the ol' standby TimThumb. diff --git a/mthumb.php b/mthumb.php index 1a431c7..d95973f 100644 --- a/mthumb.php +++ b/mthumb.php @@ -47,7 +47,7 @@ /** * Version of this script * */ -define ('VERSION', '0.9.1'); +define ('VERSION', '1.0'); //Load a config file if it exists. Otherwise, use the values below if(file_exists(dirname(__FILE__).'/mthumb-config.php')) { @@ -58,7 +58,7 @@ /** * Enable debug logging to web server error log (STDERR) */ - define ('DEBUG_ON', false); + define ('DEBUG_ON', FALSE); } if(!defined('DEBUG_LEVEL')) { @@ -80,7 +80,7 @@ /** * Allow image fetching from external websites. Will check against ALLOWED_SITES always. * */ - define ('ALLOW_EXTERNAL', false); + define ('ALLOW_EXTERNAL', FALSE); } if(!isset($ALLOWED_SITES)) { @@ -184,7 +184,7 @@ /** * Use for testing if you want to disable all browser caching */ - define ('BROWSER_CACHE_DISABLE', TRUE); // @todo mindshare change this + define ('BROWSER_CACHE_DISABLE', FALSE); } if(!defined('MAX_WIDTH')) {