source: trunk/install/db/60-database.php @ 5196

Last change on this file since 5196 was 5196, checked in by plg, 14 years ago

increase copyright year to 2010

  • Property svn:eol-style set to LF
File size: 3.3 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2010 Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24if (!defined('PHPWG_ROOT_PATH'))
25{
26  die('Hacking attempt!');
27}
28
29$upgrade_description = 'Change default value on #user_infos for guest';
30
31include_once(PHPWG_ROOT_PATH.'include/constants.php');
32include(PHPWG_ROOT_PATH . 'include/config_default.inc.php');
33@include(PHPWG_ROOT_PATH. 'include/config_local.inc.php');
34
35// +-----------------------------------------------------------------------+
36// |                            Upgrade content                            |
37// +-----------------------------------------------------------------------+
38
39load_conf_from_db();
40
41$query = "
42update ".USER_INFOS_TABLE."
43set
44  template = '".$conf['default_template']."',
45  nb_image_line = ".$conf['nb_image_line'].",
46  nb_line_page = ".$conf['nb_line_page'].",
47  language = '".$conf['default_language']."',
48  maxwidth = ".(empty($conf['default_maxwidth']) ? "null" : $conf['default_maxwidth']).",
49  maxheight = ".(empty($conf['default_maxheight']) ? "null" : $conf['default_maxheight']).",
50  recent_period = ".$conf['recent_period'].",
51  expand = '".boolean_to_string($conf['auto_expand'])."',
52  show_nb_comments = '".boolean_to_string($conf['show_nb_comments'])."',
53  show_nb_hits = '".boolean_to_string($conf['show_nb_hits'])."',
54  enabled_high = '".boolean_to_string(
55    (isset($conf['newuser_default_enabled_high']) ? 
56      $conf['newuser_default_enabled_high'] : true))."'
57where
58  user_id = ".$conf['default_user_id'].";";
59pwg_query($query);
60
61
62$query = "
63delete from ".CONFIG_TABLE."
64where
65  param in
66(
67  'default_template',
68  'nb_image_line',
69  'nb_line_page',
70  'default_language',
71  'default_maxwidth',
72  'default_maxheight',
73  'recent_period',
74  'auto_expand',
75  'show_nb_comments',
76  'show_nb_hits'
77);";
78pwg_query($query);
79
80echo
81"\n"
82.'"'.$upgrade_description.'"'.' ended'
83."\n"
84;
85
86?>
Note: See TracBrowser for help on using the repository browser.