aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dirsearch.php
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2013-11-09 15:36:14 +0000
committerThomas Willingham <founder@kakste.com>2013-11-09 15:36:14 +0000
commitc030330abcbc7584db0d2abfb84acbb10211ee17 (patch)
tree6e195f723fe3e7378c027ad6b9379d8db862e789 /mod/dirsearch.php
parent3a9cbcaf011f5c5d423e1cd99b43442669692129 (diff)
downloadvolse-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.php7
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']);