aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dirsearch.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-09-30 19:28:59 -0700
committerfriendica <info@friendica.com>2013-09-30 19:28:59 -0700
commit2353e6d23f54902d3b2b9e3fd46f1baa6e803450 (patch)
treece0bdcad8fd3faa694bda2dcdb3773843e67f4f1 /mod/dirsearch.php
parente992cfeca9a80583b7cde12776fcfe279be02996 (diff)
downloadvolse-hubzilla-2353e6d23f54902d3b2b9e3fd46f1baa6e803450.tar.gz
volse-hubzilla-2353e6d23f54902d3b2b9e3fd46f1baa6e803450.tar.bz2
volse-hubzilla-2353e6d23f54902d3b2b9e3fd46f1baa6e803450.zip
small fixes
Diffstat (limited to 'mod/dirsearch.php')
-rw-r--r--mod/dirsearch.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/mod/dirsearch.php b/mod/dirsearch.php
index bb068a431..14307f274 100644
--- a/mod/dirsearch.php
+++ b/mod/dirsearch.php
@@ -45,7 +45,16 @@ function dirsearch_content(&$a) {
// by default use a safe search
$safe = ((x($_REQUEST,'safe')) ? intval($_REQUEST['safe']) : 1 );
- $sync = ((x($_REQUEST,'sync')) ? datetime_convert('UTC','UTC',$_REQUEST['sync']) : '');
+
+ if(array_key_exists('sync',$_REQUEST)) {
+ if($_REQUEST['sync'])
+ $sync = datetime_convert('UTC','UTC',$_REQUEST['sync']);
+ else
+ $sync = datetime_convert('UTC','UTC','2010-01-01 01:01:00');
+ }
+ else
+ $sync = false;
+
$sort_order = ((x($_REQUEST,'order')) ? $_REQUEST['order'] : '');
// TODO - a meta search which joins all of these things to one search string