summaryrefslogtreecommitdiff
path: root/actions/peopletag.php
diff options
context:
space:
mode:
authorCiaranG <ciaran@ciarang.com>2009-03-11 23:41:30 +0000
committerCiaranG <ciaran@ciarang.com>2009-03-11 23:46:23 +0000
commitc08e4d904ec80144379c5728e2274e3513e6c819 (patch)
tree082dfda16ba3049affaff02716b897d24feeba65 /actions/peopletag.php
parent70d5fc46845804507640e354c9d9e06367a53fb0 (diff)
PostgreSQL - a few more query compatibility issues (submitted by oxygene)
Diffstat (limited to 'actions/peopletag.php')
-rw-r--r--actions/peopletag.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/peopletag.php b/actions/peopletag.php
index 6b1e34f1a..5add75485 100644
--- a/actions/peopletag.php
+++ b/actions/peopletag.php
@@ -119,7 +119,7 @@ class PeopletagAction extends Action
'FROM profile JOIN profile_tag ' .
'ON profile.id = profile_tag.tagger ' .
'WHERE profile_tag.tagger = profile_tag.tagged ' .
- 'AND tag = "%s" ' .
+ "AND tag = '%s' " .
'ORDER BY profile_tag.modified DESC%s';
$profile->query(sprintf($qry, $this->tag, $lim));