mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
0포인트로 설정하면 필터에서 막히는 문제 수정 @laelbe #1036
This commit is contained in:
parent
1fb64b87ac
commit
4f35512241
2 changed files with 3 additions and 12 deletions
|
|
@ -6,15 +6,6 @@
|
|||
<fields>
|
||||
<field name="max_level" required="true" rule="number,less_than_1000" />
|
||||
<field name="point_name" required="true" />
|
||||
<field name="signup_point" required="true" default="0" />
|
||||
<field name="login_point" required="true" default="0" />
|
||||
<field name="insert_document" required="true" default="0" />
|
||||
<field name="insert_comment" required="true" default="0" />
|
||||
<field name="upload_file" required="true" default="0" />
|
||||
<field name="download_file" required="true" default="0" />
|
||||
<field name="read_document" required="true" default="0" />
|
||||
<field name="voted" required="true" default="0" />
|
||||
<field name="blamed" required="true" default="0" />
|
||||
<field name="level_icon" required="true" default="default" />
|
||||
</fields>
|
||||
</ruleset>
|
||||
|
|
|
|||
|
|
@ -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