Skip to content

Commit eca3fc9

Browse files
committed
Fixed url for feed when running on hhvm http server
1 parent c5a9bc5 commit eca3fc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/helpers/url_helper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function url_for($url, $absolute=false)
6565
$port_str = $port ? (($port == '80' || $port == '443') ? "" : ":" . $port) : "";
6666

6767
// !isset的情况下就是在命令行模式下的,这时使用默认的线上host信息
68-
$host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : ONLINE_HOSTNAME;
68+
$host = isset($_SERVER['HTTP_HOST']) && !$absolute ? $_SERVER['HTTP_HOST'] : ONLINE_HOSTNAME;
6969

7070
return ($absolute ? "{$protocal}://{$host}{$port_str}" : "" ) . $base_url . $url;
7171
}

0 commit comments

Comments
 (0)