Project

General

Profile

1 4 ryan
<?php
2
3 17 stefan
// $Id$
4 4 ryan
5
/*
6
7
 Website Baker Project <http://www.websitebaker.org/>
8 915 Ruebenwurz
 Copyright (C) 2004-2009, Ryan Djurovich
9 4 ryan
10
 Website Baker is free software; you can redistribute it and/or modify
11
 it under the terms of the GNU General Public License as published by
12
 the Free Software Foundation; either version 2 of the License, or
13
 (at your option) any later version.
14
15
 Website Baker is distributed in the hope that it will be useful,
16
 but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 GNU General Public License for more details.
19
20
 You should have received a copy of the GNU General Public License
21
 along with Website Baker; if not, write to the Free Software
22
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23
24
*/
25
26 17 stefan
if(!defined('WB_URL')) {
27
	header('Location: ../pages/index.php');
28 286 stefan
	exit(0);
29 17 stefan
}
30
31 4 ryan
// Get entered values
32 353 ryan
$display_name = $wb->add_slashes(strip_tags($wb->get_post('display_name')));
33 656 thorn
$language = $wb->get_post_escaped('language');
34
$timezone = $wb->get_post_escaped('timezone')*60*60;
35
$date_format = $wb->get_post_escaped('date_format');
36
$time_format = $wb->get_post_escaped('time_format');
37 4 ryan
38
// Create a javascript back link
39
$js_back = "javascript: history.go(-1);";
40
41
// Update the database
42
$database = new database();
43 275 stefan
$query = "UPDATE ".TABLE_PREFIX."users SET display_name = '$display_name', language = '$language', timezone = '$timezone', date_format = '$date_format', time_format = '$time_format' WHERE user_id = '".$wb->get_user_id()."'";
44 4 ryan
$database->query($query);
45
if($database->is_error()) {
46 275 stefan
	$wb->print_error($database->get_error,'index.php',false);
47 4 ryan
} else {
48 540 Ruebenwurz
	$wb->print_success($MESSAGE['PREFERENCES']['DETAILS_SAVED'], WB_URL.'/account/preferences.php');
49 4 ryan
	$_SESSION['DISPLAY_NAME'] = $display_name;
50
	$_SESSION['LANGUAGE'] = $language;
51
	$_SESSION['TIMEZONE'] = $timezone;
52
	// Update date format
53
	if($date_format != '') {
54
		$_SESSION['DATE_FORMAT'] = $date_format;
55
		if(isset($_SESSION['USE_DEFAULT_DATE_FORMAT'])) { unset($_SESSION['USE_DEFAULT_DATE_FORMAT']); }
56
	} else {
57
		$_SESSION['USE_DEFAULT_DATE_FORMAT'] = true;
58
		if(isset($_SESSION['DATE_FORMAT'])) { unset($_SESSION['DATE_FORMAT']); }
59
	}
60
	// Update time format
61
	if($time_format != '') {
62
		$_SESSION['TIME_FORMAT'] = $time_format;
63
		if(isset($_SESSION['USE_DEFAULT_TIME_FORMAT'])) { unset($_SESSION['USE_DEFAULT_TIME_FORMAT']); }
64
	} else {
65
		$_SESSION['USE_DEFAULT_TIME_FORMAT'] = true;
66
		if(isset($_SESSION['TIME_FORMAT'])) { unset($_SESSION['TIME_FORMAT']); }
67
	}
68
}
69
70 239 stefan
?>