diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-12 15:30:23 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-12 15:30:23 -0800 |
commit | d6f1df8b76259acfc0d0566e8bf3610172b27884 (patch) | |
tree | 700883ae52f1e760cb245610f35da315376f35d7 /classes/Notice.php | |
parent | 38f42d56bc5f2871d69d1df066a1f1d76e7cbc68 (diff) |
fix for Atom notice output: correct check against conversation & current id
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 924931e42..73b22d58a 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1016,7 +1016,7 @@ class Notice extends Memcached_DataObject } if (!empty($this->conversation) - && $this->conversation != $this->notice->id) { + && $this->conversation != $this->id) { $xs->element( 'link', array( 'rel' => 'ostatus:conversation', |