aboutsummaryrefslogtreecommitdiffstats
path: root/admin/include/functions_permalinks.php
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2010-07-05 21:18:14 +0000
committernikrou <nikrou@piwigo.org>2010-07-05 21:18:14 +0000
commita9849aa9b661cce3563b5db1013d88091da4faa6 (patch)
treebdc081e24990f946a7ea270d65d10896532c8116 /admin/include/functions_permalinks.php
parent531ee3537559c2a03220b189c17f9c96d73bafc5 (diff)
Bug 1763 fixed : [PostgreSQL] double quote used in queries
git-svn-id: http://piwigo.org/svn/trunk@6664 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/include/functions_permalinks.php')
-rw-r--r--admin/include/functions_permalinks.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/include/functions_permalinks.php b/admin/include/functions_permalinks.php
index a61ed32a0..4073970fd 100644
--- a/admin/include/functions_permalinks.php
+++ b/admin/include/functions_permalinks.php
@@ -47,7 +47,7 @@ function get_cat_id_from_old_permalink($permalink)
SELECT c.id
FROM '.OLD_PERMALINKS_TABLE.' op INNER JOIN '.CATEGORIES_TABLE.' c
ON op.cat_id=c.id
- WHERE op.permalink="'.$permalink.'"
+ WHERE op.permalink=\''.$permalink.'\'
LIMIT 1';
$result = pwg_query($query);
$cat_id = null;