diff options
author | rub <rub@piwigo.org> | 2007-01-21 23:05:37 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-01-21 23:05:37 +0000 |
commit | d0c7ff3b15b768dfe731cab22db36f316a048aa4 (patch) | |
tree | 0fcc0a20525c9cc3de2d04df1564687ff4c97588 /install/db | |
parent | eb0315c74d6ec2495bf591623b1f97e2929d888e (diff) |
Bad quotes Fixed
git-svn-id: http://piwigo.org/svn/trunk@1740 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | install/db/44-database.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/db/44-database.php b/install/db/44-database.php index fc781a56c..957d1b1ca 100644 --- a/install/db/44-database.php +++ b/install/db/44-database.php @@ -2,7 +2,7 @@ // +-----------------------------------------------------------------------+ // | PhpWebGallery - a PHP based picture gallery | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | -// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net | +// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ // | branch : BSF (Best So Far) // | file : $Id$ @@ -39,7 +39,7 @@ include_once(PHPWG_ROOT_PATH.'include/constants.php'); // +-----------------------------------------------------------------------+ $query = ' -ALTER TABLE '.PREFIX_TABLE.'image_category` DROP INDEX `image_category_i1`;"; +ALTER TABLE '.PREFIX_TABLE.'image_category DROP INDEX `image_category_i1;'; pwg_query($query); echo |