diff options
author | CiaranG <ciaran@ciarang.com> | 2009-07-19 08:05:53 +0100 |
---|---|---|
committer | CiaranG <ciaran@ciarang.com> | 2009-07-19 08:05:53 +0100 |
commit | 1139f7cad59aa562eb1a7f7691c00392206e73fd (patch) | |
tree | b97dacb336af0638e8b1583af283269d5645a4c7 /classes/Notice.php | |
parent | c74943e5985c7a096db3c1fc8f34a6e97c8c1efa (diff) | |
parent | 788dd66dbe75db5d09c0cd5b33bb3347233cbd15 (diff) |
Merge commit 'br3nda/0.8.x-pgfixes' into 0.8.x
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 0359c310d..101fadb67 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -873,7 +873,7 @@ class Notice extends Memcached_DataObject if ($cnt > 0) { $qry .= ', '; } - $qry .= '('.$id.', '.$this->id.', '.$source.', "'.$this->created.'") '; + $qry .= '('.$id.', '.$this->id.', '.$source.", '".$this->created. "') "; $cnt++; if (rand() % NOTICE_INBOX_SOFT_LIMIT == 0) { Notice_inbox::gc($id); @@ -899,10 +899,14 @@ class Notice extends Memcached_DataObject { $user = new User(); + if(common_config('db','quote_identifiers')) + $user_table = '"user"'; + else $user_table = 'user'; + $qry = 'SELECT id ' . - 'FROM user JOIN subscription '. - 'ON user.id = subscription.subscriber ' . + 'FROM '. $user_table .' JOIN subscription '. + 'ON '. $user_table .'.id = subscription.subscriber ' . 'WHERE subscription.subscribed = %d '; $user->query(sprintf($qry, $this->profile_id)); |