diff --git a/common/script.php b/common/script.php index 246efeabb..a6e8b7251 100644 --- a/common/script.php +++ b/common/script.php @@ -115,7 +115,7 @@ function printFileList($list){ for($i=0,$c=count($list);$i<$c;$i++){ $file = getRealPath($list[$i]); if(file_exists($file)){ - $output .= '/* file:' . $file . " */\n"; + $output .= '/* file: ' . str_replace(_XE_PATH_,'./',$file) . " */\n"; $output .= file_get_contents($file); $output .= "\n"; }