summaryrefslogtreecommitdiff
path: root/lib/atomnoticefeed.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-03-03 17:35:18 -0800
committerZach Copley <zach@status.net>2010-03-03 20:58:34 -0800
commitf210cadfecc4f87e1fb8e35cd784a7010c443c31 (patch)
tree8c900b41211719b4e2267126f670ad97a3230c27 /lib/atomnoticefeed.php
parentb97ac60209fdec3f2d521f7c9d54acca6d00d274 (diff)
Revert "Revert "Show <activity:subject> and no activity actors for user feed""
This reverts commit e2578cfad68c45ca177c51997c4cc7c0abafbd9a.
Diffstat (limited to 'lib/atomnoticefeed.php')
-rw-r--r--lib/atomnoticefeed.php16
1 files changed, 13 insertions, 3 deletions
diff --git a/lib/atomnoticefeed.php b/lib/atomnoticefeed.php
index 3c3556cb9..e4df731fe 100644
--- a/lib/atomnoticefeed.php
+++ b/lib/atomnoticefeed.php
@@ -107,9 +107,19 @@ class AtomNoticeFeed extends Atom10Feed
*/
function addEntryFromNotice($notice)
{
- $this->addEntryRaw($notice->asAtomEntry());
- }
+ $source = $this->showSource();
+ $author = $this->showAuthor();
-}
+ $this->addEntryRaw($notice->asAtomEntry(false, $source, $author));
+ }
+ function showSource()
+ {
+ return true;
+ }
+ function showAuthor()
+ {
+ return true;
+ }
+}