diff options
author | Evan Prodromou <evan@status.net> | 2010-03-02 03:40:43 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-03-02 03:40:43 -0500 |
commit | e2578cfad68c45ca177c51997c4cc7c0abafbd9a (patch) | |
tree | a6a3b9ec360a88be535cde8e7426832b74e0ebe0 /classes/Notice.php | |
parent | 40ac7247979dc6f33f56b20c907d55deb6b9c815 (diff) |
Revert "Show <activity:subject> and no activity actors for user feed"
This reverts commit c25fc8a4b51466f13c41efc0565bf15f78f6cb4d.
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index c31d8bd69..7c424ee8a 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1090,7 +1090,7 @@ class Notice extends Memcached_DataObject return $groups; } - function asAtomEntry($namespace=false, $source=false, $author=true) + function asAtomEntry($namespace=false, $source=false) { $profile = $this->getProfile(); @@ -1135,10 +1135,8 @@ class Notice extends Memcached_DataObject $xs->element('title', null, $this->content); - if ($author) { - $xs->raw($profile->asAtomAuthor()); - $xs->raw($profile->asActivityActor()); - } + $xs->raw($profile->asAtomAuthor()); + $xs->raw($profile->asActivityActor()); $xs->element('link', array('rel' => 'alternate', 'type' => 'text/html', |