mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Fix double-escaping nickname and homepage of guest author
This commit is contained in:
parent
581097a9e3
commit
3bf458e9ba
2 changed files with 9 additions and 9 deletions
|
|
@ -50,7 +50,7 @@
|
|||
</block>
|
||||
<!--@if(is_array($status_list))-->
|
||||
<!--@foreach($status_list AS $key=>$value)-->
|
||||
<input type="radio" name="status" value="{$key}" id="{$key}" <!--@if($oDocument->get('status') == $key || ($key == 'PUBLIC' && !$document_srl))-->checked="checked"<!--@end--> />
|
||||
<input type="radio" name="status" value="{$key}" id="{$key}" <!--@if($oDocument->get('status') == $key || ($key == 'PUBLIC' && !$document_srl))-->checked="checked"<!--@end--> />
|
||||
<label for="{$key}">{$value}</label>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
|
@ -58,7 +58,7 @@
|
|||
<div class="write_author">
|
||||
<span class="item" cond="!$is_logged">
|
||||
<label for="userName" class="iLabel">{$lang->writer}</label>
|
||||
<input type="text" name="nick_name" id="userName" class="iText userName" style="width:80px" value="{htmlspecialchars($oDocument->get('nick_name'))}" />
|
||||
<input type="text" name="nick_name" id="userName" class="iText userName" style="width:80px" value="{escape($oDocument->get('nick_name'), false)}" />
|
||||
</span>
|
||||
<span class="item" cond="!$is_logged">
|
||||
<label for="userPw" class="iLabel">{$lang->password}</label>
|
||||
|
|
@ -66,12 +66,12 @@
|
|||
</span>
|
||||
<span class="item" cond="!$is_logged">
|
||||
<label for="homePage" class="iLabel">{$lang->homepage}</label>
|
||||
<input type="text" name="homepage" id="homePage" class="iText homePage" style="width:140px"value="{htmlspecialchars($oDocument->get('homepage'))}" />
|
||||
<input type="text" name="homepage" id="homePage" class="iText homePage" style="width:140px"value="{escape($oDocument->get('homepage'), false)}" />
|
||||
</span>
|
||||
<span class="item">
|
||||
<label for="tags" class="iLabel">{$lang->tag}: {$lang->about_tag}</label>
|
||||
<input type="text" name="tags" id="tags" value="{htmlspecialchars($oDocument->get('tags'))}" class="iText" style="width:300px" title="Tag" />
|
||||
</span>
|
||||
<input type="text" name="tags" id="tags" value="{escape($oDocument->get('tags') ?? '', false)}" class="iText" style="width:300px" title="Tag" />
|
||||
</span>
|
||||
</div>
|
||||
<div class="write_captcha" cond="isset($captcha) && $captcha && $captcha->isTargetAction('document')">
|
||||
{$captcha}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
|
||||
<!--@if(is_array($status_list))-->
|
||||
<!--@foreach($status_list AS $key=>$value)-->
|
||||
<input type="radio" name="status" value="{$key}" id="{$key}" <!--@if($oDocument->get('status') == $key || ($key == 'PUBLIC' && !$document_srl))-->checked="checked"<!--@end--> />
|
||||
<input type="radio" name="status" value="{$key}" id="{$key}" <!--@if($oDocument->get('status') == $key || ($key == 'PUBLIC' && !$document_srl))-->checked="checked"<!--@end--> />
|
||||
<label for="{$key}">{$value}</label>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<div class="write_author">
|
||||
<span class="item" cond="!$is_logged">
|
||||
<label for="userName" class="iLabel">{$lang->writer}</label>
|
||||
<input type="text" name="nick_name" id="userName" class="iText userName" style="width:80px" value="{htmlspecialchars($oDocument->get('nick_name'))}" />
|
||||
<input type="text" name="nick_name" id="userName" class="iText userName" style="width:80px" value="{escape($oDocument->get('nick_name'), false)}" />
|
||||
</span>
|
||||
<span class="item" cond="!$is_logged">
|
||||
<label for="userPw" class="iLabel">{$lang->password}</label>
|
||||
|
|
@ -65,11 +65,11 @@
|
|||
</span>
|
||||
<span class="item" cond="!$is_logged">
|
||||
<label for="homePage" class="iLabel">{$lang->homepage}</label>
|
||||
<input type="text" name="homepage" id="homePage" class="iText homePage" style="width:140px"value="{htmlspecialchars($oDocument->get('homepage'))}" />
|
||||
<input type="text" name="homepage" id="homePage" class="iText homePage" style="width:140px"value="{escape($oDocument->get('homepage'), false)}" />
|
||||
</span>
|
||||
<span class="item">
|
||||
<label for="tags" class="iLabel">{$lang->tag}: {$lang->about_tag}</label>
|
||||
<input type="text" name="tags" id="tags" value="{htmlspecialchars($oDocument->get('tags'))}" class="iText" style="width:300px" title="Tag" />
|
||||
<input type="text" name="tags" id="tags" value="{escape($oDocument->get('tags') ?? '', false)}" class="iText" style="width:300px" title="Tag" />
|
||||
</span>
|
||||
<span class="item" cond="$oDocument->get('document_srl') && isset($module_info->update_log) && $module_info->update_log == 'Y'">
|
||||
<label for="reason_update" class="iLabel">{$lang->reason_update}</label>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue