기본값 변경

This commit is contained in:
qw5414 2016-02-18 10:34:43 +09:00
parent 996ee8feaf
commit 019a7499b7
2 changed files with 3 additions and 3 deletions

View file

@ -62,8 +62,8 @@
<extra_vars>
<var name="icon_duplication" type="select">
<title xml:lang="ko">아이콘 중복 방지 설정</title>
<description xml:lang="ko">아이콘 중복 방지 설정을 적용할 경우 그룹아이콘이 있을때 포인트 레벨 아이콘은 띄우지 않도록 합니다.</description>
<title xml:lang="ko">아이콘 중복 설정</title>
<description xml:lang="ko">아이콘 중복 설정을 적용할 경우 그룹아이콘이 있을때 포인트 레벨 아이콘은 띄우지 않도록 합니다.</description>
<options value="">
<title xml:lang="ko">적용하지 않음</title>
<title xml:lang="zh-CN">不启用</title>

View file

@ -15,7 +15,7 @@ function pointLevelIconTrans($matches, $addon_info)
$orig_text = preg_replace('/' . preg_quote($matches[5], '/') . '<\/' . $matches[6] . '>$/', '', $matches[0]);
if($addon_info->icon_duplication == 'Y')
if($addon_info->icon_duplication != 'Y')
{
// Check Group Image Mark
$oMemberModel = getModel('member');