mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
fixed parser error
Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
parent
0bc15efef6
commit
5db963a835
1 changed files with 1 additions and 1 deletions
2
boot.php
2
boot.php
|
@ -697,7 +697,7 @@ class App {
|
|||
$this->query_string = substr($_SERVER['QUERY_STRING'], 9);
|
||||
|
||||
// removing trailing / - maybe a nginx problem
|
||||
$this->query_string = lrim($this->query_string, '/');
|
||||
$this->query_string = ltrim($this->query_string, '/');
|
||||
} elseif ((x($_SERVER, 'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'], 0, 2) === "q=") {
|
||||
$this->query_string = substr($_SERVER['QUERY_STRING'], 2);
|
||||
|
||||
|
|
Loading…
Reference in a new issue