회원 이미지이름/마크와 포인트레벨 아이콘 이미지의 경로를 절대경로로 하여 캐싱이 잘 되도록 변경

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5372 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-01-16 03:02:49 +00:00
parent 19eb87149e
commit f4a48435f3
2 changed files with 3 additions and 3 deletions

View file

@ -26,7 +26,7 @@
$text = $matches[5];
// 레벨 아이콘의 위치를 구함
$level_icon = sprintf('./modules/point/icons/%s/%d.gif', $config->level_icon, $level);
$level_icon = sprintf('%smodules/point/icons/%s/%d.gif', Context::getRequestUri(), $config->level_icon, $level);
// 최고 레벨이 아니면 다음 레벨로 가기 위한 per을 구함 :: 주석과 실제 내용이 맞지 않아 실제 내용을 수정
if($level < $config->max_level) {