Skip to content
Snippets Groups Projects
Commit e2372594 authored by Peter Rotich's avatar Peter Rotich
Browse files

osTicket 1.7.0 release

parent 4b2ecda0
No related branches found
No related tags found
No related merge requests found
New stuff in 1.7.0
====================
* Bug fixes from rc6
New stuff in 1.7-rc6
====================
* Bug fixes and enhancements from rc5
......
......@@ -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='';
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment