diff options
author | Brion Vibber <brion@pobox.com> | 2010-06-11 12:05:53 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-06-11 12:05:53 -0700 |
commit | 7f3b3620af2af88ced37da1d9f8913cfd1a31b90 (patch) | |
tree | 13f137c377c3dfebbb2e749866e958ede08c2d24 /classes/Notice.php | |
parent | e81f17e911f59c5ba68fddefd318ea6caf25924c (diff) | |
parent | 47665e845ae74e6ee5b9a39565fb45dd9a93f921 (diff) |
Merge branch 'testing' of gitorious.org:statusnet/mainline into 0.9.x
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 cf6f9c279..fd8ad5493 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1254,6 +1254,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)) { |