mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-27 22:33:10 +09:00
#349 기본 게시판 스킨의 글쓰기 폼에서 getTitleText()를 htmlspecialchars()를 이용하여 따옴표등으로 인한 태그 오류 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3426 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
5399b1301c
commit
30144beae8
2 changed files with 2 additions and 2 deletions
|
|
@ -36,7 +36,7 @@
|
|||
</select>
|
||||
<!--@end-->
|
||||
|
||||
<input type="text" name="title" id="title" class="inputTypeText" value="{$oDocument->getTitleText()}" />
|
||||
<input type="text" name="title" id="title" class="inputTypeText" value="{htmlspecialchars($oDocument->getTitleText())}" />
|
||||
</div>
|
||||
|
||||
<dl class="option">
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
</select>
|
||||
<!--@end-->
|
||||
|
||||
<input type="text" name="title" id="title" class="inputTypeText" value="{$oDocument->getTitleText()}" />
|
||||
<input type="text" name="title" id="title" class="inputTypeText" value="{htmlspecialchars($oDocument->getTitleText())}" />
|
||||
</div>
|
||||
|
||||
<dl class="option">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue