summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-22 04:20:00 +0100
committerAndrew Dolgov <[email protected]>2005-08-22 04:20:00 +0100
commit71ad39598b4de8e481f03e4843ffc40a6ba56469 (patch)
treeae5516330ec6005ced69205bfc6866429481aa7e /functions.php
parent007bda3585c5ae865b370eae6ee5f4e2d3cc9cf2 (diff)
basic functionality pass 8
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index b36efe1a7..d49c951fc 100644
--- a/functions.php
+++ b/functions.php
@@ -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"];