Some indentation.
[squirrelmail.git] / src / validate.php
... / ...
CommitLineData
1<?php
2
3/**
4* validate.php
5*
6* Copyright (c) 1999-2002 The SquirrelMail Project Team
7* Licensed under the GNU GPL. For full terms see the file COPYING.
8*
9* $Id$
10*/
11
12/* include the mime class before the session start ! otherwise we can't store
13 * messages with a session_register.
14 */
15
16require_once('../class/mime.class.php');
17
18session_start();
19
20require_once('../functions/i18n.php');
21require_once('../functions/auth.php');
22require_once('../functions/strings.php');
23require_once('../functions/global.php');
24
25is_logged_in();
26
27/* Remove all slashes for form values. */
28if (get_magic_quotes_gpc()) {
29 global $REQUEST_METHOD;
30
31 if ($REQUEST_METHOD == 'POST') {
32 global $HTTP_POST_VARS;
33 RemoveSlashes($HTTP_POST_VARS);
34 } else if ($REQUEST_METHOD == 'GET') {
35 global $HTTP_GET_VARS;
36 RemoveSlashes($HTTP_GET_VARS);
37 }
38}
39
40/**
41* Auto-detection
42*
43* if $send (the form button's name) contains "\n" as the first char
44* and the script is compose.php, then trim everything. Otherwise, we
45* don't have to worry.
46*
47* This is for a RedHat package bug and a Konqueror (pre 2.1.1?) bug
48*/
49global $send, $PHP_SELF;
50if (isset($send)
51 && (substr($send, 0, 1) == "\n")
52 && (substr($PHP_SELF, -12) == '/compose.php')) {
53 if ($REQUEST_METHOD == 'POST') {
54 global $HTTP_POST_VARS;
55 TrimArray($HTTP_POST_VARS);
56 } else {
57 global $HTTP_GET_VARS;
58 TrimArray($HTTP_GET_VARS);
59 }
60}
61
62/**
63* Everyone needs stuff from config, and config needs stuff from
64* strings.php, so include them both here. Actually, strings is
65* included at the top now as the string array functions have
66* been moved into it.
67*
68* Include them down here instead of at the top so that all config
69* variables overwrite any passed in variables (for security).
70*/
71
72/**
73 * Reset the $theme() array in case a value was passed via a cookie.
74 * This is until theming is rewritten.
75 */
76global $theme;
77unset($theme);
78$theme=array();
79
80require_once('../config/config.php');
81require_once('../src/load_prefs.php');
82require_once('../functions/page_header.php');
83require_once('../functions/prefs.php');
84
85/* Set up the language (i18n.php was included by auth.php). */
86global $username, $data_dir;
87set_up_language(getPref($data_dir, $username, 'language'));
88
89$timeZone = getPref($data_dir, $username, 'timezone');
90if ( $timeZone != SMPREF_NONE && ($timeZone != "")
91 && !ini_get("safe_mode")) {
92 putenv("TZ=".$timeZone);
93}
94?>