mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
#17288491 서명이 불필요한 경우를 대비해서 옵션으로 설정할 수 있게 수정.
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6620 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
44f5930b32
commit
fd54d21004
3 changed files with 12 additions and 1 deletions
|
|
@ -93,7 +93,7 @@
|
||||||
'image_name', 'image_name_max_width', 'image_name_max_height',
|
'image_name', 'image_name_max_width', 'image_name_max_height',
|
||||||
'image_mark', 'image_mark_max_width', 'image_mark_max_height',
|
'image_mark', 'image_mark_max_width', 'image_mark_max_height',
|
||||||
'group_image_mark', 'group_image_mark_max_width', 'group_image_mark_max_height',
|
'group_image_mark', 'group_image_mark_max_width', 'group_image_mark_max_height',
|
||||||
'signature_max_height'
|
'signature','signature_max_height'
|
||||||
);
|
);
|
||||||
|
|
||||||
if(!$args->skin) $args->skin = "default";
|
if(!$args->skin) $args->skin = "default";
|
||||||
|
|
@ -106,6 +106,7 @@
|
||||||
if($args->image_name!='Y') $args->image_name = 'N';
|
if($args->image_name!='Y') $args->image_name = 'N';
|
||||||
if($args->image_mark!='Y') $args->image_mark = 'N';
|
if($args->image_mark!='Y') $args->image_mark = 'N';
|
||||||
if($args->group_image_mark!='Y') $args->group_image_mark = 'N';
|
if($args->group_image_mark!='Y') $args->group_image_mark = 'N';
|
||||||
|
if($args->signature!='Y') $args->signature = 'N';
|
||||||
if(!trim(strip_tags($args->agreement))) $args->agreement = null;
|
if(!trim(strip_tags($args->agreement))) $args->agreement = null;
|
||||||
$args->limit_day = (int)$args->limit_day;
|
$args->limit_day = (int)$args->limit_day;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -129,10 +129,12 @@
|
||||||
<th><div>{$lang->allow_mailing}</div></th>
|
<th><div>{$lang->allow_mailing}</div></th>
|
||||||
<td><input type="checkbox" name="allow_mailing" value="Y" class="checkbox" <!--@if($member_info->allow_mailing!='N')-->checked="checked"<!--@end--> /> <p>{$lang->about_allow_mailing}</p></td>
|
<td><input type="checkbox" name="allow_mailing" value="Y" class="checkbox" <!--@if($member_info->allow_mailing!='N')-->checked="checked"<!--@end--> /> <p>{$lang->about_allow_mailing}</p></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<!--@if($member_config->signature != 'N')-->
|
||||||
<tr>
|
<tr>
|
||||||
<th><div>{$lang->signature}</div></th>
|
<th><div>{$lang->signature}</div></th>
|
||||||
<td>{$editor}</td>
|
<td>{$editor}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<!--@end-->
|
||||||
|
|
||||||
<!--@if($extend_form_list)-->
|
<!--@if($extend_form_list)-->
|
||||||
<tr><th colspan="2" class="title"><div>{$lang->member_extend_info}</div></th></tr>
|
<tr><th colspan="2" class="title"><div>{$lang->member_extend_info}</div></th></tr>
|
||||||
|
|
|
||||||
|
|
@ -92,6 +92,14 @@
|
||||||
</p>
|
</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th scope="row"><div>{$lang->signature}</div></th>
|
||||||
|
<td>
|
||||||
|
<p>
|
||||||
|
<input type="checkbox" name="signature" value="Y" <!--@if($config->signature=='Y')-->checked="checked"<!--@end--> class="checkbox"/>
|
||||||
|
</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr class="row2">
|
<tr class="row2">
|
||||||
<th scope="row"><div>{$lang->signature_max_height}</div></th>
|
<th scope="row"><div>{$lang->signature_max_height}</div></th>
|
||||||
<td>
|
<td>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue