#19155844 ./common/script.php import 파일경로가 절대경로로 나오는 주석을 상대경로로 변경

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7699 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2010-09-27 09:05:25 +00:00
parent 9e5d9d49bc
commit 0c813bed39

View file

@ -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";
}