From 99b5046fc2ead70e6458741081cda3fec14adf01 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 13 Sep 2016 11:48:27 +0300 Subject: [PATCH] Removed self host version flag --- app/Libraries/Utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Libraries/Utils.php b/app/Libraries/Utils.php index 448ca17bb0fc..a67e15dc99b9 100644 --- a/app/Libraries/Utils.php +++ b/app/Libraries/Utils.php @@ -186,7 +186,7 @@ class Utils $response = new stdClass(); $response->message = isset($_ENV["{$userType}_MESSAGE"]) ? $_ENV["{$userType}_MESSAGE"] : ''; $response->id = isset($_ENV["{$userType}_ID"]) ? $_ENV["{$userType}_ID"] : ''; - $response->version = env('NINJA_SELF_HOST_VERSION', NINJA_VERSION); + $response->version = NINJA_VERSION; return $response; }