1
|
<?php
|
2
|
|
3
|
// $Id: details.php 540 2008-01-14 21:08:02Z Ruebenwurzel $
|
4
|
|
5
|
/*
|
6
|
|
7
|
Website Baker Project <http://www.websitebaker.org/>
|
8
|
Copyright (C) 2004-2008, Ryan Djurovich
|
9
|
|
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
|
if(!defined('WB_URL')) {
|
27
|
header('Location: ../pages/index.php');
|
28
|
exit(0);
|
29
|
}
|
30
|
|
31
|
// Get entered values
|
32
|
$display_name = $wb->add_slashes(strip_tags($wb->get_post('display_name')));
|
33
|
$language = $wb->get_post('language');
|
34
|
$timezone = $wb->get_post('timezone')*60*60;
|
35
|
$date_format = $wb->get_post('date_format');
|
36
|
$time_format = $wb->get_post('time_format');
|
37
|
|
38
|
// Create a javascript back link
|
39
|
$js_back = "javascript: history.go(-1);";
|
40
|
|
41
|
// Update the database
|
42
|
$database = new database();
|
43
|
$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
|
$database->query($query);
|
45
|
if($database->is_error()) {
|
46
|
$wb->print_error($database->get_error,'index.php',false);
|
47
|
} else {
|
48
|
$wb->print_success($MESSAGE['PREFERENCES']['DETAILS_SAVED'], WB_URL.'/account/preferences.php');
|
49
|
$_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
|
?>
|