Skip to content

Commit ae96a27

Browse files
committed
Version, Typo conf-vars
1 parent b0a2364 commit ae96a27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

php/classes/Config.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@
6464
);
6565
define(
6666
'ENV_USE_JSON_CACHE',
67-
!empty($_ENV['CONF_USE_JSON_CACHE']) && $_ENV['CONF_USE_JSON_CACHE'] == 'true'
67+
!empty($ENV['CONF_USE_JSON_CACHE']) && $ENV['CONF_USE_JSON_CACHE'] == 'true'
6868
);
6969
define(
7070
'ENV_USE_LOGO_CACHE',
71-
!empty($_ENV['CONF_USE_LOGO_CACHE']) && $_ENV['CONF_USE_LOGO_CACHE'] == 'true'
71+
!empty($ENV['CONF_USE_LOGO_CACHE']) && $ENV['CONF_USE_LOGO_CACHE'] == 'true'
7272
);
7373

7474
// IP on reverse proxy setup
@@ -85,7 +85,7 @@ class Config {
8585
/**
8686
* The system's version.
8787
*/
88-
const VERSION = 'v2.9.0-alpha';
88+
const VERSION = 'v2.9.0';
8989

9090
/**
9191
* The real domain which should be used.

0 commit comments

Comments
 (0)