#18582625 템플릿 핸들러 생성시간 비교 제거

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7098 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
misol 2010-01-02 17:52:38 +00:00
parent 1f46ce34ec
commit 386a185f7e

View file

@ -96,7 +96,7 @@
$source_ftime = filemtime(FileHandler::getRealPath($tpl_file));
$target_ftime = filemtime($compiled_tpl_file);
if($source_ftime>$target_ftime || $target_ftime < filemtime(_XE_PATH_.'classes/template/TemplateHandler.class.php') ) return $this->_compileTplFile($tpl_file, $compiled_tpl_file);
if($source_ftime>$target_ftime) return $this->_compileTplFile($tpl_file, $compiled_tpl_file);
}
/**