Browse Source

replace $_SESSION with sqgetGlobalVar

Thijs Kinkhorst 22 years ago
parent
commit
324a593bae
1 changed files with 3 additions and 1 deletions
  1. 3 1
      include/load_prefs.php

+ 3 - 1
include/load_prefs.php

@@ -18,7 +18,9 @@ require_once(SM_PATH . 'functions/prefs.php');
 require_once(SM_PATH . 'functions/plugin.php');
 require_once(SM_PATH . 'functions/constants.php');
 
-$username = ( !isset($_SESSION['username']) ? '' : $_SESSION['username'] );
+if( ! sqgetGlobalVar('username', $username, SQ_SESSION) ) {
+    $username = '';
+}
 
 $custom_css = getPref($data_dir, $username, 'custom_css', 'none' );