summaryrefslogtreecommitdiff
path: root/lib/atomnoticefeed.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-03-02 03:40:43 -0500
committerEvan Prodromou <evan@status.net>2010-03-02 03:40:43 -0500
commite2578cfad68c45ca177c51997c4cc7c0abafbd9a (patch)
treea6a3b9ec360a88be535cde8e7426832b74e0ebe0 /lib/atomnoticefeed.php
parent40ac7247979dc6f33f56b20c907d55deb6b9c815 (diff)
Revert "Show <activity:subject> and no activity actors for user feed"
This reverts commit c25fc8a4b51466f13c41efc0565bf15f78f6cb4d.
Diffstat (limited to 'lib/atomnoticefeed.php')
-rw-r--r--lib/atomnoticefeed.php16
1 files changed, 3 insertions, 13 deletions
diff --git a/lib/atomnoticefeed.php b/lib/atomnoticefeed.php
index e4df731fe..3c3556cb9 100644
--- a/lib/atomnoticefeed.php
+++ b/lib/atomnoticefeed.php
@@ -107,19 +107,9 @@ class AtomNoticeFeed extends Atom10Feed
*/
function addEntryFromNotice($notice)
{
- $source = $this->showSource();
- $author = $this->showAuthor();
-
- $this->addEntryRaw($notice->asAtomEntry(false, $source, $author));
- }
-
- function showSource()
- {
- return true;
+ $this->addEntryRaw($notice->asAtomEntry());
}
- function showAuthor()
- {
- return true;
- }
}
+
+