Removed self host version flag

This commit is contained in:
Hillel Coren 2016-09-13 11:48:27 +03:00
parent 0301c3a97c
commit 99b5046fc2

View File

@ -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;
}