diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-30 11:50:16 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-30 11:50:16 -0400 |
commit | 4e6cd427577f55e024fac26b5cdab6c15ba9f97f (patch) | |
tree | f5b24ba13e77fe643abb76ffdeab0ca124ecf40f /classes/Notice.php | |
parent | 424dd56b2aa4685e30970685079275098807e572 (diff) |
conversation code changes
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 502cc57b8..2ba2f31b1 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -795,7 +795,7 @@ class Notice extends Memcached_DataObject $notice->selectAdd(); // clears it $notice->selectAdd('id'); - $notice->whereAdd('conversation = '.$id); + $notice->conversation = $id; $notice->orderBy('id DESC'); |