디렉토리 및 파일 생성 퍼미션 정의된 상수로 변경

This commit is contained in:
chicpro
2013-08-22 10:23:01 +09:00
parent f4df5b27e0
commit 1afa7c1b58
10 changed files with 26 additions and 26 deletions

View File

@ -419,8 +419,8 @@ if($shop_install) {
);
for ($i=0; $i<count($dir_arr); $i++) {
@mkdir($dir_arr[$i], 0707);
@chmod($dir_arr[$i], 0707);
@mkdir($dir_arr[$i], G4_DIR_PERMISSION);
@chmod($dir_arr[$i], G4_DIR_PERMISSION);
}
}
?>