1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-28 07:17:11 +00:00

basic functionality pass 8

This commit is contained in:
Andrew Dolgov
2005-08-22 04:20:00 +01:00
parent 007bda3585
commit 71ad39598b
5 changed files with 56 additions and 15 deletions

View File

@@ -32,10 +32,15 @@
if (!$entry_timestamp) $entry_timestamp = $item["updated"];
$entry_timestamp = strtotime($entry_timestamp);
if (!$entry_timestamp) continue;
$entry_title = $item["title"];
$entry_link = $item["link"];
if (!$entry_title) continue;
if (!$entry_link) continue;
$entry_content = $item["description"];
if (!$entry_content) $entry_content = $item["content"];