]> git.mxchange.org Git - friendica.git/blobdiff - boot.php
Continued a bit:
[friendica.git] / boot.php
index 3bf85b14f4b4c9876bbd7e3f00d4db0ed8ba8ce1..f65829ed187d3e106d65a2cfcbf366bd3561a170 100644 (file)
--- a/boot.php
+++ b/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);
 
@@ -721,8 +721,8 @@ class App {
                }
 
                // Diaspora style profile url
-               if (substr($this->cmd,0,2) === 'u/') {
-                       $this->cmd = 'profile/' . substr($this->cmd,2);
+               if (substr($this->cmd, 0, 2) === 'u/') {
+                       $this->cmd = 'profile/' . substr($this->cmd, 2);
                }