summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-01 17:38:16 +0400
committerAndrew Dolgov <[email protected]>2013-05-01 17:38:16 +0400
commit04d2f9c831b14f7295a3475746b9096402a055f0 (patch)
treee89902e87dd266ce6ba5083c3c3d058da405a245 /include
parentcd07592c29391ca374f78a75a10465f894d50042 (diff)
add basic rss support
Diffstat (limited to 'include')
-rw-r--r--include/rssfuncs.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index 3b7f7d2cf..ec0ca5a4f 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -549,7 +549,9 @@
$entry_timestamp = "";
- $entry_timestamp = strtotime($item->get_date());
+ $entry_timestamp = $item->get_date();
+
+ _debug("orig date: " . $item->get_date(), $debug_enabled);
if ($entry_timestamp == -1 || !$entry_timestamp || $entry_timestamp > time()) {
$entry_timestamp = time();