aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2010-06-17 13:49:24 +0000
committernikrou <nikrou@piwigo.org>2010-06-17 13:49:24 +0000
commita14278f2479529a33afeaf97034164292895b90d (patch)
tree1843781377e1297c0f1ae27bdf632a8d5af63622 /admin
parent8cdd30a828f51d0fa94247b09373fddcde752f70 (diff)
Bug 1733 fixed : String values must be delimited by single quotes in queries
git-svn-id: http://piwigo.org/svn/trunk@6542 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin')
-rw-r--r--admin/include/themes.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/include/themes.class.php b/admin/include/themes.class.php
index 832110e8e..d8e3163c3 100644
--- a/admin/include/themes.class.php
+++ b/admin/include/themes.class.php
@@ -151,7 +151,7 @@ INSERT INTO '.THEMES_TABLE.'
SELECT
id
FROM '.THEMES_TABLE.'
- WHERE id != "'.$theme_id.'"
+ WHERE id != \''.$theme_id.'\'
;';
$result = pwg_query($query);
if (pwg_db_num_rows($result) == 0)
@@ -270,7 +270,7 @@ DELETE
SELECT
user_id
FROM '.USER_INFOS_TABLE.'
- WHERE theme = "'.$default_theme.'"
+ WHERE theme = \''.$default_theme.'\'
;';
$user_ids = array_unique(
array_merge(