mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 08:42:15 +09:00
0포인트로 설정하면 필터에서 막히는 문제 수정 @laelbe #1036
This commit is contained in:
parent
1fb64b87ac
commit
4f35512241
2 changed files with 3 additions and 12 deletions
|
|
@ -83,7 +83,7 @@
|
|||
<td class="nowr">{$lang->cmd_signup}</td>
|
||||
<td class="nowr">
|
||||
{$lang->point_given_prefix}
|
||||
<input type="number" value="{$config->signup_point ?: ''}" name="signup_point" id="signup_point" />
|
||||
<input type="number" value="{$config->signup_point ?: '0'}" name="signup_point" id="signup_point" />
|
||||
{$lang->point_given_suffix}
|
||||
</td>
|
||||
<td class="nowr"></td>
|
||||
|
|
@ -92,7 +92,7 @@
|
|||
<td class="nowr">{$lang->cmd_login}</td>
|
||||
<td class="nowr">
|
||||
{$lang->point_given_prefix}
|
||||
<input type="number" value="{$config->login_point ?: ''}" name="login_point" id="login_point" />
|
||||
<input type="number" value="{$config->login_point ?: '0'}" name="login_point" id="login_point" />
|
||||
{$lang->point_given_suffix}
|
||||
</td>
|
||||
<td class="nowr"></td>
|
||||
|
|
@ -102,7 +102,7 @@
|
|||
<td class="nowr">{lang('point_' . $action_type)}</td>
|
||||
<td class="nowr">
|
||||
{$lang->point_given_prefix}
|
||||
<input type="number" value="{$config_array[$action_type] ?: ''}" name="{$action_type}" id="{$action_type}" />
|
||||
<input type="number" value="{$config_array[$action_type] ?: '0'}" name="{$action_type}" id="{$action_type}" />
|
||||
{$lang->point_given_suffix}
|
||||
</td>
|
||||
<td class="nowr">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue