PostgreSQL - fixed a couple more quoting issues
This commit is contained in:
parent
97bc187e31
commit
e5345d8d7a
|
@ -40,7 +40,7 @@ class Notice_tag extends Memcached_DataObject
|
||||||
$qry =
|
$qry =
|
||||||
'SELECT notice.* ' .
|
'SELECT notice.* ' .
|
||||||
'FROM notice JOIN notice_tag ON notice.id = notice_tag.notice_id ' .
|
'FROM notice JOIN notice_tag ON notice.id = notice_tag.notice_id ' .
|
||||||
'WHERE notice_tag.tag = "%s" ';
|
"WHERE notice_tag.tag = '%s' ";
|
||||||
|
|
||||||
return Notice::getStream(sprintf($qry, $tag),
|
return Notice::getStream(sprintf($qry, $tag),
|
||||||
'notice_tag:notice_stream:' . common_keyize($tag),
|
'notice_tag:notice_stream:' . common_keyize($tag),
|
||||||
|
|
|
@ -589,7 +589,7 @@ class User extends Memcached_DataObject
|
||||||
'JOIN profile_tag ON (profile_tag.tagged = subscription.subscriber ' .
|
'JOIN profile_tag ON (profile_tag.tagged = subscription.subscriber ' .
|
||||||
'AND profile_tag.tagger = subscription.subscribed) ' .
|
'AND profile_tag.tagger = subscription.subscribed) ' .
|
||||||
'WHERE subscription.subscribed = %d ' .
|
'WHERE subscription.subscribed = %d ' .
|
||||||
'AND profile_tag.tag = "%s" ' .
|
"AND profile_tag.tag = '%s' " .
|
||||||
'AND subscription.subscribed != subscription.subscriber ' .
|
'AND subscription.subscribed != subscription.subscriber ' .
|
||||||
'ORDER BY subscription.created DESC ';
|
'ORDER BY subscription.created DESC ';
|
||||||
|
|
||||||
|
@ -617,7 +617,7 @@ class User extends Memcached_DataObject
|
||||||
'JOIN profile_tag on (profile_tag.tagged = subscription.subscribed ' .
|
'JOIN profile_tag on (profile_tag.tagged = subscription.subscribed ' .
|
||||||
'AND profile_tag.tagger = subscription.subscriber) ' .
|
'AND profile_tag.tagger = subscription.subscriber) ' .
|
||||||
'WHERE subscription.subscriber = %d ' .
|
'WHERE subscription.subscriber = %d ' .
|
||||||
'AND profile_tag.tag = "%s" ' .
|
"AND profile_tag.tag = '%s' " .
|
||||||
'AND subscription.subscribed != subscription.subscriber ' .
|
'AND subscription.subscribed != subscription.subscriber ' .
|
||||||
'ORDER BY subscription.created DESC ';
|
'ORDER BY subscription.created DESC ';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user