]> git.mxchange.org Git - friendica.git/commitdiff
Improve goaway legibility
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 17 Dec 2017 16:43:30 +0000 (11:43 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Sat, 30 Dec 2017 02:55:13 +0000 (21:55 -0500)
boot.php

index d786295587a8e86a0893976d7c343cb12fb3c203..be97cab75713ffa32911041185e07b88cee8b724 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -851,13 +851,15 @@ function killme()
 /**
  * @brief Redirect to another URL and terminate this process.
  */
-function goaway($s)
+function goaway($path)
 {
-       if (!strstr(normalise_link($s), "http://")) {
-               $s = System::baseUrl() . "/" . $s;
+       if (strstr(normalise_link($path), 'http://')) {
+               $url = $path;
+       } else {
+               $url = System::baseUrl() . '/' . ltrim($path, '/');
        }
 
-       header("Location: $s");
+       header("Location: $url");
        killme();
 }