diff options
author | friendica <info@friendica.com> | 2013-07-29 20:31:02 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-29 20:31:02 -0700 |
commit | 79dacc3f1ad86aabfc78c0ecb8603720dedd4cfe (patch) | |
tree | 691b1c2642b6cdc59f2fb91f54534a6196cc5ed1 /mod | |
parent | 7b3c29ebe69726f7d42c9327bebb2ea7251bccb4 (diff) | |
download | volse-hubzilla-79dacc3f1ad86aabfc78c0ecb8603720dedd4cfe.tar.gz volse-hubzilla-79dacc3f1ad86aabfc78c0ecb8603720dedd4cfe.tar.bz2 volse-hubzilla-79dacc3f1ad86aabfc78c0ecb8603720dedd4cfe.zip |
fix some weirdness on the zot feed
Diffstat (limited to 'mod')
-rw-r--r-- | mod/zotfeed.php | 2 |
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'; |