diff options
author | rub <rub@piwigo.org> | 2007-03-13 23:01:16 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-03-13 23:01:16 +0000 |
commit | c5da19e5362101517d3f805c86132016b90bd271 (patch) | |
tree | 2751d89bb79584f8a32192c21f6b2429fc7794ce /install | |
parent | 6295173652a7767fa482df231ae7a9034b89ecde (diff) |
Fix bad default value for language on table user_info
Improve mail send (Undisclosed-recipients, switch language, ...)
Improve send an email to group members (Use Bcc, template, multi-language, ...) (But need more improvements)
git-svn-id: http://piwigo.org/svn/trunk@1904 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | install/db/58-database.php | 51 | ||||
-rw-r--r-- | install/phpwebgallery_structure.sql | 2 |
2 files changed, 52 insertions, 1 deletions
diff --git a/install/db/58-database.php b/install/db/58-database.php new file mode 100644 index 000000000..56b186372 --- /dev/null +++ b/install/db/58-database.php @@ -0,0 +1,51 @@ +<?php +// +-----------------------------------------------------------------------+ +// | PhpWebGallery - a PHP based picture gallery | +// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | +// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | +// +-----------------------------------------------------------------------+ +// | file : $Id: 58-database.php 1849 2007-02-22 01:12:32Z rvelices $ +// | last update : $Date: 2007-02-22 02:12:32 +0100 (jeu., 22 févr. 2007) $ +// | last modifier : $Author: rvelices $ +// | revision : $Revision: 1849 $ +// +-----------------------------------------------------------------------+ +// | This program is free software; you can redistribute it and/or modify | +// | it under the terms of the GNU General Public License as published by | +// | the Free Software Foundation | +// | | +// | This program is distributed in the hope that it will be useful, but | +// | WITHOUT ANY WARRANTY; without even the implied warranty of | +// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | +// | General Public License for more details. | +// | | +// | You should have received a copy of the GNU General Public License | +// | along with this program; if not, write to the Free Software | +// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | +// | USA. | +// +-----------------------------------------------------------------------+ + +if (!defined('PHPWG_ROOT_PATH')) +{ + die('Hacking attempt!'); +} + +$upgrade_description = 'Change default value for #user_infos.language'; + +include_once(PHPWG_ROOT_PATH.'include/constants.php'); + +// +-----------------------------------------------------------------------+ +// | Upgrade content | +// +-----------------------------------------------------------------------+ + +$query = " +ALTER TABLE ".USER_INFOS_TABLE." CHANGE `language` `language` varchar(50) NOT NULL default 'en_UK.iso-8859-1' +"; +pwg_query($query); + +echo +"\n" +.'"'.$upgrade_description.'"'.' ended' +."\n" +; + +?> diff --git a/install/phpwebgallery_structure.sql b/install/phpwebgallery_structure.sql index 4169f2973..32257e36a 100644 --- a/install/phpwebgallery_structure.sql +++ b/install/phpwebgallery_structure.sql @@ -378,7 +378,7 @@ CREATE TABLE `phpwebgallery_user_infos` ( `nb_line_page` tinyint(3) unsigned NOT NULL default '3', `status` enum('webmaster','admin','normal','generic','guest') NOT NULL default 'guest', `adviser` enum('true','false') NOT NULL default 'false', - `language` varchar(50) NOT NULL default 'english', + `language` varchar(50) NOT NULL default 'en_UK.iso-8859-1', `maxwidth` smallint(6) default NULL, `maxheight` smallint(6) default NULL, `expand` enum('true','false') NOT NULL default 'false', |