diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-07-25 10:15:23 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-07-25 10:15:23 +0200 |
commit | 35200e5f1b10cdd18af8f0ea646996e438b97011 (patch) | |
tree | e29804fad16e1958ce0852da58be25354d9a1f1c /boot.php | |
parent | 7e2635adfe2d20545d3a699c6fc14552c01a35a9 (diff) | |
parent | 091ef33f18e4c9af8980ef1e8a4513c40e58b4b3 (diff) | |
download | volse-hubzilla-35200e5f1b10cdd18af8f0ea646996e438b97011.tar.gz volse-hubzilla-35200e5f1b10cdd18af8f0ea646996e438b97011.tar.bz2 volse-hubzilla-35200e5f1b10cdd18af8f0ea646996e438b97011.zip |
Merge branch '3.6RC' of https://framagit.org/hubzilla/core into 3.6RC
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -878,6 +878,8 @@ class App { // removing trailing / - maybe a nginx problem if (substr(self::$query_string, 0, 1) == "/") self::$query_string = substr(self::$query_string, 1); + // change the first & to ? + self::$query_string = preg_replace('/&/','?',self::$query_string,1); } if(x($_GET,'q')) |