From: Andrew Dolgov Date: Mon, 19 Jul 2010 11:18:43 +0000 (+0400) Subject: add author info to generated feeds X-Git-Tag: 1.4.3-proper~17 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=2f0903a62572315e43960fb1ec33c18f7b2a56f9;p=tt-rss.git add author info to generated feeds --- diff --git a/functions.php b/functions.php index 9bf2bcac..627055f8 100644 --- a/functions.php +++ b/functions.php @@ -3667,7 +3667,11 @@ $rfc822_date = date('r', strtotime($line["updated"])); - print "$rfc822_date"; + print "$rfc822_date"; + + if ($line["author"]) { + print "" . htmlspecialchars($line["author"]) . ""; + } print "" . htmlspecialchars($line["title"]) . "";