aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorMichael <icarus@dabo.de>2012-02-20 01:53:22 +0100
committerMichael <icarus@dabo.de>2012-02-20 01:53:22 +0100
commit0fb22e1284c0510a0d009e34b7a1aa31ef6be052 (patch)
treecd3b4aa3b824587eb0b271d9a51b4311171af966 /boot.php
parentb6d7777226517dc22745bc3d78b827b0175bcb16 (diff)
downloadvolse-hubzilla-0fb22e1284c0510a0d009e34b7a1aa31ef6be052.tar.gz
volse-hubzilla-0fb22e1284c0510a0d009e34b7a1aa31ef6be052.tar.bz2
volse-hubzilla-0fb22e1284c0510a0d009e34b7a1aa31ef6be052.zip
API is now working on my nginx server.
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 0c79b6e54..d9c788f8a 100755
--- a/boot.php
+++ b/boot.php
@@ -309,8 +309,12 @@ class App {
. 'library/phpsec' . PATH_SEPARATOR
. '.' );
- if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=")
+ if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") {
$this->query_string = substr($_SERVER['QUERY_STRING'],2);
+ // removing trailing / - maybe a nginx problem
+ if (substr($this->query_string, 0, 1) == "/")
+ $this->query_string = substr($this->query_string, 1);
+ }
if(x($_GET,'q'))
$this->cmd = trim($_GET['q'],'/\\');