|
可以在testlink\lib\results\printDocument.php中找到“$docText .= renderEOF();”这句。在此句之前加入
####################################################################################
# change relative image paths to absolute image paths
# src="/ => src="http(s)://example.com/
####################################################################################
# fetch protocol and domainname
if($_SERVER["SERVER_PORT"]=='443'){
$url_host = "https://".$_SERVER["HTTP_HOST"];
}elseif($_SERVER["SERVER_PORT"]=='80'){
$url_host = "http://".$_SERVER["HTTP_HOST"];
}else{
$url_host = $_SERVER["HTTP_HOST"].":".$_SERVER["SERVER_PORT"];
}
if(substr($url_host, -1)!='/'){
$url_host.= '/';
}
$xPattern = "/src=\"\//si";
$xValue = "src=\"".$url_host;
$docText = preg_replace($xPattern, $xValue, $docText);
####################################################################################
可参考http://www.teamst.org/forum/view ... 3583&hilit=word |
|