mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-17 05:41:28 +00:00
simplepie: fix getting article author
This commit is contained in:
@@ -684,7 +684,9 @@
|
|||||||
|
|
||||||
if (ENABLE_SIMPLEPIE) {
|
if (ENABLE_SIMPLEPIE) {
|
||||||
$entry_comments = strip_tags($item->data["comments"]);
|
$entry_comments = strip_tags($item->data["comments"]);
|
||||||
$entry_author = $item->get_author();
|
if ($item->get_author()) {
|
||||||
|
$entry_author = $item->get_author()->get_name();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$entry_comments = strip_tags($item["comments"]);
|
$entry_comments = strip_tags($item["comments"]);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user