mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
통합 검색 모듈에서 html 태그로 검색시 검색 결과에 특수문자 처리 후 출력되도록 변경 (#475)
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4204 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
3f0ec628c9
commit
dd71a5eb4f
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@
|
|||
if(Context::getLangType()=='en')
|
||||
$result_text = sprintf(Context::getLang("is_result_text"), $output->total_count, $is_keyword);
|
||||
else
|
||||
$result_text = sprintf(Context::getLang("is_result_text"), $is_keyword, $output->total_count);
|
||||
$result_text = sprintf(Context::getLang("is_result_text"), htmlspecialchars($is_keyword, ENT_NOQUOTES, 'UTF-8'), $output->total_count);
|
||||
Context::set('result_text', $result_text);
|
||||
Context::set('mid_list', $mid_list);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue