관리자 글현황 추가 및 기타 오류 수정

This commit is contained in:
chicpro
2015-08-28 11:42:25 +09:00
parent 82c12f6d98
commit 84009dc16c
84 changed files with 29584 additions and 16 deletions

View File

@ -93,7 +93,9 @@ class C_CT_CLI
while ( list(,$i) = each($arg) )
{
$exec_cmd .= " " . escapeshellarg( $i );
// 일부서버의 경우 빈값일때 '' 결과가 넘어오지 않는 버그가 있다. kagla 150820
//$exec_cmd .= " " . escapeshellarg( $i );
$exec_cmd .= " " . ( escapeshellarg($i) ? escapeshellarg($i) : "''" );
}
$rt = exec( $exec_cmd );