xml정보 캐시파일 생성시 언어별 캐시파일 생성하도록 변경

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2086 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-30 08:42:51 +00:00
parent 212fea578d
commit 639897623a

View file

@ -289,7 +289,7 @@
if(!file_exists($xml_file)) return;
// 캐시된 파일이 있는지 확인
$cache_file = sprintf("./files/cache/module_info/%s.php", $module);
$cache_file = sprintf("./files/cache/module_info/%s.%s.php", $module, Context::getLangType());
// 캐시 파일이 없거나 캐시 파일이 xml 파일보다 오래되었으면 내용 다시 갱신
if(!file_exists($cache_file) || filectime($cache_file)<filectime($xml_file)) {