Remove some cruft

This commit is contained in:
Isaac Connor
2023-01-27 16:57:26 -05:00
parent 5bf89b7178
commit bbdfd0ddf0

View File

@@ -23,12 +23,6 @@ if ( empty($_COOKIE['zmBandwidth']) )
if ( empty($_COOKIE['zmBandwidth']) )
$_COOKIE['zmBandwidth'] = 'low';
//ini_set( "magic_quotes_gpc", "Off" );
// Uncomment if there are language overrides
//if ( $skinLangFile = loadLanguage( ZM_SKIN_PATH ) )
//require_once( $skinLangFile );
foreach ( getSkinIncludes('includes/config.php') as $includeFile )
require_once $includeFile;
@@ -39,7 +33,6 @@ if ( empty($view) ) {
$view = isset($user)?'console':'login';
}
if ( isset($user) ) {
// Bandwidth Limiter
if ( !empty($user['MaxBandwidth']) ) {
@@ -54,5 +47,4 @@ if ( isset($user) ) {
// If there are additional actions
foreach ( getSkinIncludes( 'includes/actions.php' ) as $includeFile )
require_once $includeFile;
?>