diff options
author | Brion Vibber <brion@pobox.com> | 2010-06-07 10:34:00 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-06-07 10:34:00 -0700 |
commit | 5a96b9e8052361f8eddecc56decd68d4611ccc19 (patch) | |
tree | f4c312f25151ed824c78e5b70e0ffcfed5bb4ee2 /classes/Notice.php | |
parent | 41e9dba7297d43b7de0cb7665901869910d1047a (diff) | |
parent | 02c68ff5230e505dcfbb1dbd764415db8b8379ee (diff) |
Merge branch 'master' of gitorious.org:statusnet/mainline into testing
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index cda632885..9ac9e10c1 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1252,6 +1252,8 @@ class Notice extends Memcached_DataObject if (!empty($cur)) { $noticeInfoAttr['favorite'] = ($cur->hasFave($this)) ? "true" : "false"; + $profile = $cur->getProfile(); + $noticeInfoAttr['repeated'] = ($profile->hasRepeated($this->id)) ? "true" : "false"; } if (!empty($this->repeat_of)) { |