diff options
author | Dj Padzensky <djpadz@padz.net> | 2016-02-12 15:56:13 -0800 |
---|---|---|
committer | Dj Padzensky <djpadz@padz.net> | 2016-02-12 15:56:13 -0800 |
commit | 773bf36733cd217f257f3a5734a6e69353911a01 (patch) | |
tree | 8b3f0e87f3006c563cc1d6fdea414dfba76a700d /app/constants.php | |
parent | 77ae92b09baacecaad3450ba06f40c8df76a7a19 (diff) |
Added a DISABLE_LOGOUT constant, to allow the logout command to be disabled, for support of external SSO solutions.
Diffstat (limited to 'app/constants.php')
-rw-r--r-- | app/constants.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/constants.php b/app/constants.php index 1740494e..955edeb5 100644 --- a/app/constants.php +++ b/app/constants.php @@ -111,3 +111,6 @@ defined('HTTP_PROXY_HOSTNAME') or define('HTTP_PROXY_HOSTNAME', ''); defined('HTTP_PROXY_PORT') or define('HTTP_PROXY_PORT', '3128'); defined('HTTP_PROXY_USERNAME') or define('HTTP_PROXY_USERNAME', ''); defined('HTTP_PROXY_PASSWORD') or define('HTTP_PROXY_PASSWORD', ''); + +// Disabling logout (for external SSO authentication) +defined('DISABLE_LOGOUT') or define('DISABLE_LOGOUT', 0); |