diff options
author | zotlabs <mike@macgirvin.com> | 2018-08-26 23:00:31 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-08-26 23:00:31 -0700 |
commit | 9367e9fe5a0125bf4c2f77909f2789c9dcd41e1e (patch) | |
tree | af109abdb981631e235c51fbfbf1ebcee486c1f9 /Zotlabs/Module/Directory.php | |
parent | 7018da3f127e9d2abdb359516d079fc038a4c2a3 (diff) | |
download | volse-hubzilla-9367e9fe5a0125bf4c2f77909f2789c9dcd41e1e.tar.gz volse-hubzilla-9367e9fe5a0125bf4c2f77909f2789c9dcd41e1e.tar.bz2 volse-hubzilla-9367e9fe5a0125bf4c2f77909f2789c9dcd41e1e.zip |
Change main router request variable from 'q' to 'req'. This is necessary to implement search in the twitter api addon, because twitter requires use of the variable 'q'.
Diffstat (limited to 'Zotlabs/Module/Directory.php')
-rw-r--r-- | Zotlabs/Module/Directory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Directory.php b/Zotlabs/Module/Directory.php index 8a7c6baf6..59b832a0f 100644 --- a/Zotlabs/Module/Directory.php +++ b/Zotlabs/Module/Directory.php @@ -395,7 +395,7 @@ class Directory extends \Zotlabs\Web\Controller { $dirtitle = (($globaldir) ? t('Global Directory') : t('Local Directory')); - $o .= "<script> var page_query = '" . escape_tags($_GET['q']) . "'; var extra_args = '" . extra_query_args() . "' ; divmore_height = " . intval($maxheight) . "; </script>"; + $o .= "<script> var page_query = '" . escape_tags($_GET['req']) . "'; var extra_args = '" . extra_query_args() . "' ; divmore_height = " . intval($maxheight) . "; </script>"; $o .= replace_macros($tpl, array( '$search' => $search, '$desc' => t('Find'), |