설치된 파일과 설치된 버전의 공식 패키지의 파일을 비교하는 tool추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4374 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-07-16 09:57:29 +00:00
parent e3ec34e1aa
commit f1a891558e
7 changed files with 259 additions and 1 deletions

View file

@ -54,7 +54,7 @@
function dispAdminIndex() {
// 공식사이트에서 최신 뉴스를 가져옴
$newest_news_url = sprintf("http://news.zeroboard.com/%s/news.php", Context::getLangType());
$cache_file = sprintf("./files/cache/newest_news.%s.cache.php", Context::getLangType());
$cache_file = sprintf("%sfiles/cache/newest_news.%s.cache.php", _XE_PATH_,Context::getLangType());
// 1시간 단위로 캐싱 체크
if(!file_exists($cache_file) || filemtime($cache_file)+ 60*60 < time()) {