mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 19:51:42 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4378 201d5d3c-b55e-5fd7-737f-ddc643e51545
16 lines
461 B
PHP
16 lines
461 B
PHP
<?php
|
|
/**
|
|
* @file tools/blank_cache.php
|
|
* @author zero <zero@zeroboard.com>
|
|
* @brief 첨부파일 디렉토리의 빈 디렉토리 삭제
|
|
**/
|
|
|
|
// 인증이 되지 않은 접근이면 종료
|
|
if(!defined('__XE_TOOL_AUTH__') || !__XE_TOOL_AUTH__) exit();
|
|
|
|
// 캐시 파일 제거
|
|
FileHandler::removeBlankDir(_XE_PATH_.'files');
|
|
$output = Context::getLang('success_deleted');
|
|
|
|
Context::set('output', $output);
|
|
?>
|