global.php
authorstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 19 Aug 2002 12:25:03 +0000 (12:25 +0000)
committerstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 19 Aug 2002 12:25:03 +0000 (12:25 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3361 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/redirect.php
src/validate.php

index 2907ab6d8fb3532e431b5de8d43c84bdfe921eda..826e21dec05a057f0cccbfd24fca42f0d9714fea 100644 (file)
@@ -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()) {
index 7eca643019ee4beee8df397d590a7a7407655df8..12c26191ba7d3808eece7932471102a649425046 100644 (file)
@@ -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);
 }
 ?>