mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
Fix #2431 undefined properties
This commit is contained in:
parent
b3b3fa73a4
commit
41d33837f2
6 changed files with 16 additions and 12 deletions
|
|
@ -91,8 +91,10 @@
|
|||
</span>
|
||||
<input cond="$is_logged" type="checkbox" name="notify_message" value="Y" id="notify_message" class="iCheck" />
|
||||
<label cond="$is_logged" for="notify_message">{$lang->notify}</label>
|
||||
<input cond="$module_info->secret=='Y'" type="checkbox" name="is_secret" value="Y" id="is_secret" class="iCheck" />
|
||||
<label cond="$module_info->secret=='Y'" for="is_secret">{$lang->secret}</label>
|
||||
<!--@if(isset($module_info->secret) && $module_info->secret === 'Y')-->
|
||||
<input type="checkbox" name="is_secret" value="Y" id="is_secret" class="iCheck" />
|
||||
<label for="is_secret">{$lang->secret}</label>
|
||||
<!--@endif-->
|
||||
</div>
|
||||
<div class="write_captcha" cond="isset($captcha) && $captcha && $captcha->isTargetAction('comment')">
|
||||
{$captcha}
|
||||
|
|
|
|||
|
|
@ -29,8 +29,10 @@
|
|||
</span>
|
||||
<input cond="$is_logged" type="checkbox" name="notify_message" value="Y" checked="checked"|cond="$oComment->get('notify_message')=='Y'" id="notify_message" class="iCheck" />
|
||||
<label cond="$is_logged" for="notify_message">{$lang->notify}</label>
|
||||
<input cond="$module_info->secret=='Y'" type="checkbox" name="is_secret" value="Y" id="is_secret" checked="checked"|cond="$oComment->get('is_secret')=='Y'" class="iCheck" />
|
||||
<label cond="$module_info->secret=='Y'" for="is_secret">{$lang->secret}</label>
|
||||
<!--@if(isset($module_info->secret) && $module_info->secret === 'Y')-->
|
||||
<input type="checkbox" name="is_secret" value="Y" id="is_secret" checked="checked"|cond="$oComment->get('is_secret')=='Y'" class="iCheck" />
|
||||
<label for="is_secret">{$lang->secret}</label>
|
||||
<!--@endif-->
|
||||
</div>
|
||||
<div class="write_captcha" cond="isset($captcha) && $captcha && $captcha->isTargetAction('comment')">
|
||||
{$captcha}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue