|
From: <gem...@li...> - 2012-11-21 16:03:18
|
Revision: 1026
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=1026&view=rev
Author: matijsdejong
Date: 2012-11-21 16:03:11 +0000 (Wed, 21 Nov 2012)
Log Message:
-----------
Added new standard APPLICATION_ENV "demo" next to "production", "testing" and "development"
Modified Paths:
--------------
trunk/library/classes/Gems/Versions.php
Modified: trunk/library/classes/Gems/Versions.php
===================================================================
--- trunk/library/classes/Gems/Versions.php 2012-11-21 16:02:59 UTC (rev 1025)
+++ trunk/library/classes/Gems/Versions.php 2012-11-21 16:03:11 UTC (rev 1026)
@@ -93,7 +93,7 @@
{
$version = $this->getProjectVersion();
- if (APPLICATION_ENV !== 'production') {
+ if (APPLICATION_ENV !== 'production' && APPLICATION_ENV !== 'demo') {
$version .= '.' . $this->getBuild() . ' [' . APPLICATION_ENV . ']';
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|