diff options
author | mistic100 <mistic@piwigo.org> | 2011-04-08 09:09:13 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-04-08 09:09:13 +0000 |
commit | 797ddead2ae5f678eee182993023f524f8536d9f (patch) | |
tree | 1a21201fd6898948b066d96930ea72a8ecac72a3 /install/db/100-database.php | |
parent | 6e3a69f232d1910f0f780f37c476b25964990f76 (diff) |
bug:1791 display hd dimensions instead of websize dimensions
git-svn-id: http://piwigo.org/svn/trunk@10157 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | install/db/100-database.php | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/install/db/100-database.php b/install/db/100-database.php new file mode 100644 index 000000000..91a27f645 --- /dev/null +++ b/install/db/100-database.php @@ -0,0 +1,52 @@ +<?php +// +-----------------------------------------------------------------------+ +// | Piwigo - a PHP based photo gallery | +// +-----------------------------------------------------------------------+ +// | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org | +// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | +// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | +// +-----------------------------------------------------------------------+ +// | 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 = 'add high_width and high_height fields into IMAGES_TABLE'; + +if ('mysql' == $conf['dblayer']) +{ + $query = 'ALTER TABLE '.IMAGES_TABLE.' + ADD COLUMN `high_width` smallint(9) unsigned default NULL, + ADD COLUMN `high_height` smallint(9) unsigned default NULL;'; +} + +if (in_array($conf['dblayer'], array('pgsql', 'sqlite', 'pdo-sqlite'))) +{ + $query = 'ALTER TABLE '.IMAGES_TABLE.' + ADD COLUMN "high_width" INTEGER, + ADD COLUMN "high_height" INTEGER;'; +} + +pwg_query($query); + +echo +"\n" +. $upgrade_description +."\n" +; +?>
\ No newline at end of file |