From 4d14fc0079d1e51cacdbafeb2573ea8b5c83291a Mon Sep 17 00:00:00 2001 From: stekkel Date: Mon, 19 Aug 2002 12:25:03 +0000 Subject: [PATCH] global.php git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3361 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/redirect.php | 1 + src/validate.php | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/redirect.php b/src/redirect.php index 2907ab6d..826e21de 100644 --- a/src/redirect.php +++ b/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()) { diff --git a/src/validate.php b/src/validate.php index 7eca6430..12c26191 100644 --- a/src/validate.php +++ b/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); } ?> -- 2.25.1