회원 이미지이름/마크이미지/서명과 포인트 레벨 아이콘 표시하는 애드온을 더 가볍게 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3529 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-01-15 10:55:38 +00:00
parent 502b5a7a88
commit 0f9ec51d0a
12 changed files with 147 additions and 135 deletions

View file

@ -106,8 +106,7 @@
// 일단 대상 파일을 읽어서 내용을 구함
ob_start();
@include($path);
$content = ob_get_contents();
ob_end_clean();
$content = ob_get_clean();
FileHandler::writeFile($cache_file, $content);
@ -127,8 +126,7 @@
ob_start();
@include($cache_file);
$content = ob_get_contents();
ob_end_clean();
$content = ob_get_clean();
return $content;
}