r4204 에서 빠진 부분(영문환경에서 처리) 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4205 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
mmx900 2008-05-16 01:43:55 +00:00
parent dd71a5eb4f
commit a6d34426cf

View file

@ -88,7 +88,7 @@
// 텍스트 생성
if(Context::getLangType()=='en')
$result_text = sprintf(Context::getLang("is_result_text"), $output->total_count, $is_keyword);
$result_text = sprintf(Context::getLang("is_result_text"), $output->total_count, htmlspecialchars($is_keyword, ENT_NOQUOTES, 'UTF-8'));
else
$result_text = sprintf(Context::getLang("is_result_text"), htmlspecialchars($is_keyword, ENT_NOQUOTES, 'UTF-8'), $output->total_count);
Context::set('result_text', $result_text);