diff options
author | friendica <info@friendica.com> | 2014-11-12 15:32:15 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-11-12 15:32:15 -0800 |
commit | f42a16ca0461b14ba49b15b4de18420860d25330 (patch) | |
tree | c60699574b9efee487fd34271366553b1e0962a9 /mod | |
parent | 4e7567ffa22f04a491821d63c634630d5aacc5b9 (diff) | |
parent | 1ed144b83c3cefb685dfff37fd7d415bf5a2ffdb (diff) | |
download | volse-hubzilla-f42a16ca0461b14ba49b15b4de18420860d25330.tar.gz volse-hubzilla-f42a16ca0461b14ba49b15b4de18420860d25330.tar.bz2 volse-hubzilla-f42a16ca0461b14ba49b15b4de18420860d25330.zip |
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'mod')
-rw-r--r-- | mod/directory.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/directory.php b/mod/directory.php index 256f7ca9a..d4a4c383a 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -42,7 +42,8 @@ function directory_content(&$a) { else $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : ''); - $advanced = ((x($_REQUEST,'query')) ? notags(trim($_REQUEST['query'])) : ''); + if(strpos($search,'=') && local_user() && get_pconfig(local_user(),'feature','expert')) + $advanced = $search; $keywords = (($_GET['keywords']) ? $_GET['keywords'] : ''); |