We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0a2364 commit ae96a27Copy full SHA for ae96a27
php/classes/Config.php
@@ -64,11 +64,11 @@
64
);
65
define(
66
'ENV_USE_JSON_CACHE',
67
- !empty($_ENV['CONF_USE_JSON_CACHE']) && $_ENV['CONF_USE_JSON_CACHE'] == 'true'
+ !empty($ENV['CONF_USE_JSON_CACHE']) && $ENV['CONF_USE_JSON_CACHE'] == 'true'
68
69
70
'ENV_USE_LOGO_CACHE',
71
- !empty($_ENV['CONF_USE_LOGO_CACHE']) && $_ENV['CONF_USE_LOGO_CACHE'] == 'true'
+ !empty($ENV['CONF_USE_LOGO_CACHE']) && $ENV['CONF_USE_LOGO_CACHE'] == 'true'
72
73
74
// IP on reverse proxy setup
@@ -85,7 +85,7 @@ class Config {
85
/**
86
* The system's version.
87
*/
88
- const VERSION = 'v2.9.0-alpha';
+ const VERSION = 'v2.9.0';
89
90
91
* The real domain which should be used.
0 commit comments