]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Merge branch 'DmitrySandalov-master' into dev
authorNicolas Lœuillet <nicolas.loeuillet@gmail.com>
Wed, 13 Nov 2013 14:23:52 +0000 (15:23 +0100)
committerNicolas Lœuillet <nicolas.loeuillet@gmail.com>
Wed, 13 Nov 2013 14:23:52 +0000 (15:23 +0100)
CONTRIBUTING.md
inc/poche/Tools.class.php

index 85132e65555918625a91ef160d94822430bd68dd..c89411f38de9a194934ca80231b4eca4c5abf6e7 100644 (file)
@@ -8,4 +8,4 @@ To fix the bug quickly, we need some infos:
 * the link you want to poche and which causes problem
 
 ## You want to fix a bug or to add a feature
-Please fork poche and work with the dev branch. Do not work on master branch.
\ No newline at end of file
+Please fork poche and work with **the dev branch** only. Do not work on master branch.
index 7a872e7dff40e47951d222dd2994fa12590d3a9b..750553f1202637eeb4886a569c2586604530d547 100644 (file)
@@ -53,12 +53,12 @@ class Tools
 
         $scriptname = str_replace('/index.php', '/', $_SERVER["SCRIPT_NAME"]);
 
-        if (!isset($_SERVER["SERVER_NAME"])) {
+        if (!isset($_SERVER["HTTP_HOST"])) {
             return $scriptname;
         }
 
         return 'http' . ($https ? 's' : '') . '://'
-            . $_SERVER["SERVER_NAME"] . $serverport . $scriptname;
+            . $_SERVER["HTTP_HOST"] . $serverport . $scriptname;
     }
 
     public static function redirect($url = '')