From e0e37ff7ff741aa08b10aa00df78a5314258017a Mon Sep 17 00:00:00 2001 From: Jared Hancock <jared@osticket.com> Date: Mon, 30 Sep 2013 08:50:30 -0500 Subject: [PATCH] Disambiguate version string when running off of git If a user is running off of the develop branch, disambiguate what the version they are running. --- main.inc.php | 2 +- setup/setup.inc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.inc.php b/main.inc.php index 5a43ad3d4..9dd64e4e1 100644 --- a/main.inc.php +++ b/main.inc.php @@ -71,7 +71,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.0+'); //Shown on admin panel + define('THIS_VERSION','1.7-git'); //Shown on admin panel require(INCLUDE_DIR.'class.osticket.php'); diff --git a/setup/setup.inc.php b/setup/setup.inc.php index ab75b7219..b59d0cee0 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.0+'); +define('THIS_VERSION', '1.7-git'); #inits - error reporting. $error_reporting = E_ALL & ~E_NOTICE; -- GitLab