From e2372594d27295dab943f89e81f689d120a3c67b Mon Sep 17 00:00:00 2001 From: Peter Rotich <peter@osticket.com> Date: Tue, 2 Apr 2013 02:01:23 -0400 Subject: [PATCH] osTicket 1.7.0 release --- WHATSNEW.md | 4 ++++ main.inc.php | 6 +++--- setup/setup.inc.php | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/WHATSNEW.md b/WHATSNEW.md index 9cb6cd623..752e61fc9 100644 --- a/WHATSNEW.md +++ b/WHATSNEW.md @@ -1,3 +1,7 @@ +New stuff in 1.7.0 +==================== + * Bug fixes from rc6 + New stuff in 1.7-rc6 ==================== * Bug fixes and enhancements from rc5 diff --git a/main.inc.php b/main.inc.php index 69993ef72..c6a6d0fe7 100644 --- a/main.inc.php +++ b/main.inc.php @@ -46,8 +46,8 @@ error_reporting($error_reporting); //Respect whatever is set in php.ini (sysadmin knows better??) #Don't display errors - ini_set('display_errors', 1); - ini_set('display_startup_errors', 1); + ini_set('display_errors', 0); + ini_set('display_startup_errors', 0); //Default timezone if (!ini_get('date.timezone')) { @@ -75,7 +75,7 @@ /*############## Do NOT monkey with anything else beyond this point UNLESS you really know what you are doing ##############*/ #Current version && schema signature (Changes from version to version) - define('THIS_VERSION','1.7-RC6+'); //Shown on admin panel + define('THIS_VERSION','1.7.0'); //Shown on admin panel define('SCHEMA_SIGNATURE', 'd959a00e55c75e0c903b9e37324fd25d'); //MD5 signature of the db schema. (used to trigger upgrades) #load config info $configfile=''; diff --git a/setup/setup.inc.php b/setup/setup.inc.php index 9e14a3c12..52b7563a5 100644 --- a/setup/setup.inc.php +++ b/setup/setup.inc.php @@ -15,7 +15,7 @@ **********************************************************************/ #This version - changed on every release -define('THIS_VERSION', '1.7-RC6+'); +define('THIS_VERSION', '1.7.0'); #inits - error reporting. $error_reporting = E_ALL & ~E_NOTICE; -- GitLab