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 /include/text.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 'include/text.php')
-rw-r--r-- | include/text.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/text.php b/include/text.php index 8a07dc113..2d704cff1 100644 --- a/include/text.php +++ b/include/text.php @@ -2526,7 +2526,7 @@ function extra_query_args() { if(count($_GET)) { foreach($_GET as $k => $v) { // these are request vars we don't want to duplicate - if(! in_array($k, array('q','f','zid','page','PHPSESSID'))) { + if(! in_array($k, array('req','f','zid','page','PHPSESSID'))) { $s .= '&' . $k . '=' . urlencode($v); } } @@ -2534,7 +2534,7 @@ function extra_query_args() { if(count($_POST)) { foreach($_POST as $k => $v) { // these are request vars we don't want to duplicate - if(! in_array($k, array('q','f','zid','page','PHPSESSID'))) { + if(! in_array($k, array('req','f','zid','page','PHPSESSID'))) { $s .= '&' . $k . '=' . urlencode($v); } } |