diff options
| author | lsces <lester@lsces.co.uk> | 2026-04-06 09:59:46 +0100 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2026-04-06 09:59:46 +0100 |
| commit | b886befcabebfe7d65887d058071b8279615603a (patch) | |
| tree | d54007b9ec0fd223db5f957112336dd6f2e4d1a2 | |
| parent | ddf23c774a287ace9adc8ec9cf7ea903bb091d3f (diff) | |
| download | kernel-b886befcabebfe7d65887d058071b8279615603a.tar.gz kernel-b886befcabebfe7d65887d058071b8279615603a.tar.bz2 kernel-b886befcabebfe7d65887d058071b8279615603a.zip | |
Drop hard coded session name in favour of site specific one
| -rwxr-xr-x | includes/config_defaults_inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/config_defaults_inc.php b/includes/config_defaults_inc.php index b6d92d4..cfa1bc2 100755 --- a/includes/config_defaults_inc.php +++ b/includes/config_defaults_inc.php @@ -89,10 +89,10 @@ if( !defined( 'DEFAULT_THEME' ) ) { if( !defined( 'DISPLAY_ERRORS' ) ) { define( 'DISPLAY_ERRORS', 0 ); } -// name of session variable in browser cookie -if( !defined( 'BIT_SESSION_NAME' ) ) { - define( 'BIT_SESSION_NAME', 'BWSESSION'); // '__Secure-BWSESSION' ); -} +// name of session variable in browser cookie - deprecated, replaced by site specific name +//if( !defined( 'BIT_SESSION_NAME' ) ) {// +// define( 'BIT_SESSION_NAME', 'BWSESSION'); // '__Secure-BWSESSION' ); +//} // define where errors are sent if( !defined( 'BIT_PHP_ERROR_REPORTING' ) ) { define( 'BIT_PHP_ERROR_REPORTING', E_ALL & ~E_DEPRECATED & ~E_NOTICE & ~E_WARNING ); |
