Browse Source

global.php

stekkel 23 năm trước cách đây
mục cha
commit
dbac0a79d8
2 tập tin đã thay đổi với 6 bổ sung4 xóa
  1. 1 0
      src/redirect.php
  2. 5 4
      src/validate.php

+ 1 - 0
src/redirect.php

@@ -20,6 +20,7 @@ require_once('../functions/imap.php');
 require_once('../functions/plugin.php');
 require_once('../functions/constants.php');
 require_once('../functions/page_header.php');
+require_once('../functions/global.php');
 
 // Remove slashes if PHP added them
 if (get_magic_quotes_gpc()) {

+ 5 - 4
src/validate.php

@@ -20,7 +20,7 @@ session_start();
 require_once('../functions/i18n.php');
 require_once('../functions/auth.php');
 require_once('../functions/strings.php');
-require_once('../functions/prefs.php');
+require_once('../functions/global.php');
 
 is_logged_in();
 
@@ -80,14 +80,15 @@ $theme=array();
 require_once('../config/config.php');
 require_once('../src/load_prefs.php');
 require_once('../functions/page_header.php');
+require_once('../functions/prefs.php');
 
 /* Set up the language (i18n.php was included by auth.php). */
 global $username, $data_dir;
 set_up_language(getPref($data_dir, $username, 'language'));
 
 $timeZone = getPref($data_dir, $username, 'timezone');
-if ( $timeZone != SMPREF_NONE && ($timeZone <> '') 
-    && !ini_get( 'safe_mode')) {
-    putenv('TZ=' . $timeZone);
+if ( $timeZone != SMPREF_NONE && ($timeZone != "") 
+    && !ini_get("safe_mode")) {
+    putenv("TZ=".$timeZone);
 }
 ?>