묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
page 설정에 내용을 추가햇는데
2011.09.04 11:24
./modules/page/tpl/page_info.html에서
<tr>
<th scope="row"><div>타이틀1</div></th>
<td colspan="3">
<input type="text" name="title" value="{htmlspecialchars($module_info->title)}" class="inputTypeText fullWidth" id="title" /><a href="{getUrl('','module'+ ','module','act','dispModuleAdminLangcode','target','title')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<p>설명1.</p>
</td>
</tr>
<tr>
<th scope="row"><div>타이틀2</div></th>
<td colspan="3">
<textarea name="comment" class="inputTypeTextArea fullWidth" id="comment" />{htmlspecialchars($module_info->comment)}</textarea>
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','comment')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<p>설명2</p>
</td>
</tr>
와 같이 내용을 추가했습니다.
그런데 타이틀2가 textarea로 되어 있는데
html태그가 사용이 안되네요... (<???>를 입력하고 저장을 하면 <???>로 변경되어 있어요.)
html태그 사용 가능하게 하는 방법 좀 알려주세요.
<tr>
<th scope="row"><div>타이틀1</div></th>
<td colspan="3">
<input type="text" name="title" value="{htmlspecialchars($module_info->title)}" class="inputTypeText fullWidth" id="title" /><a href="{getUrl('','module'+ ','module','act','dispModuleAdminLangcode','target','title')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<p>설명1.</p>
</td>
</tr>
<tr>
<th scope="row"><div>타이틀2</div></th>
<td colspan="3">
<textarea name="comment" class="inputTypeTextArea fullWidth" id="comment" />{htmlspecialchars($module_info->comment)}</textarea>
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','comment')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<p>설명2</p>
</td>
</tr>
와 같이 내용을 추가했습니다.
그런데 타이틀2가 textarea로 되어 있는데
html태그가 사용이 안되네요... (<???>를 입력하고 저장을 하면 <???>로 변경되어 있어요.)
html태그 사용 가능하게 하는 방법 좀 알려주세요.
<th scope="row"><div>타이틀2</div></th>
<td colspan="3">
<textarea name="comment" class="inputTypeTextArea fullWidth" id="comment" />{htmlspecialchars($module_info->comment)}</textarea>
<a href="{getUrl('','module','module','act'+ ','dispModuleAdminLangcode','target','comment')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<p>설명2</p>
</td>
</tr>
붉은 부분을 삭제해 보세요