diff options
author | Thomas Willingham <founder@kakste.com> | 2013-11-09 15:36:14 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-11-09 15:36:14 +0000 |
commit | c030330abcbc7584db0d2abfb84acbb10211ee17 (patch) | |
tree | 6e195f723fe3e7378c027ad6b9379d8db862e789 /mod/dirsearch.php | |
parent | 3a9cbcaf011f5c5d423e1cd99b43442669692129 (diff) | |
download | volse-hubzilla-c030330abcbc7584db0d2abfb84acbb10211ee17.tar.gz volse-hubzilla-c030330abcbc7584db0d2abfb84acbb10211ee17.tar.bz2 volse-hubzilla-c030330abcbc7584db0d2abfb84acbb10211ee17.zip |
Fix safe search, and also make it an xconfig
Diffstat (limited to 'mod/dirsearch.php')
-rw-r--r-- | mod/dirsearch.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mod/dirsearch.php b/mod/dirsearch.php index 527eb4c50..dcacef651 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -43,9 +43,10 @@ function dirsearch_content(&$a) { $kw = ((x($_REQUEST,'kw')) ? intval($_REQUEST['kw']) : 0 ); // by default use a safe search - $safe = ((x($_REQUEST,'safe')) ? intval($_REQUEST['safe']) : 1 ); - - + $safe = ((x($_REQUEST,'safe'))); // ? intval($_REQUEST['safe']) : 1 ); + if ($safe === false) + $safe = 1; + if(array_key_exists('sync',$_REQUEST)) { if($_REQUEST['sync']) $sync = datetime_convert('UTC','UTC',$_REQUEST['sync']); |