Browse Source

replace $_SESSION with sqgetGlobalVar

Thijs Kinkhorst 22 năm trước cách đây
mục cha
commit
324a593bae
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  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' );