aboutsummaryrefslogtreecommitdiffstats
path: root/mod/zotfeed.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-07-29 20:31:02 -0700
committerfriendica <info@friendica.com>2013-07-29 20:31:02 -0700
commit79dacc3f1ad86aabfc78c0ecb8603720dedd4cfe (patch)
tree691b1c2642b6cdc59f2fb91f54534a6196cc5ed1 /mod/zotfeed.php
parent7b3c29ebe69726f7d42c9327bebb2ea7251bccb4 (diff)
downloadvolse-hubzilla-79dacc3f1ad86aabfc78c0ecb8603720dedd4cfe.tar.gz
volse-hubzilla-79dacc3f1ad86aabfc78c0ecb8603720dedd4cfe.tar.bz2
volse-hubzilla-79dacc3f1ad86aabfc78c0ecb8603720dedd4cfe.zip
fix some weirdness on the zot feed
Diffstat (limited to 'mod/zotfeed.php')
-rw-r--r--mod/zotfeed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/zotfeed.php b/mod/zotfeed.php
index 76a860139..2ca049563 100644
--- a/mod/zotfeed.php
+++ b/mod/zotfeed.php
@@ -9,7 +9,7 @@ function zotfeed_init(&$a) {
$mindate = (($_REQUEST['mindate']) ? datetime_convert('UTC','UTC',$_REQUEST['mindate']) : '');
if(! $mindate)
- $mindate = '0000-00-00 00:00:00';
+ $mindate = datetime_convert('UTC','UTC', 'now - 1 month');
if(get_config('system','block_public') && (! get_account_id()) && (! remote_user())) {
$result['message'] = 'Public access denied';