diff --git a/plugins/BcColumn/templates/element/site_search_form.php b/plugins/BcColumn/templates/element/site_search_form.php
index 6d308f4b5b..4f4c1d3ca3 100755
--- a/plugins/BcColumn/templates/element/site_search_form.php
+++ b/plugins/BcColumn/templates/element/site_search_form.php
@@ -16,7 +16,7 @@
BcForm->create($searchIndexesFront, array('type' => 'get', 'url' => $url)) ?>
- BcForm->control('q', ['escape' => false]) ?>
+ BcForm->control('q') ?>
BcForm->hidden('site_id', ['value' => $this->getRequest()->getAttribute('currentSite')->id]) ?>
BcForm->submit('検索', array('div' => false, 'class' => 'submit_button bs-button')) ?>
BcForm->end() ?>
diff --git a/plugins/bc-front/templates/plugin/BcSearchIndex/SearchIndexes/search.php b/plugins/bc-front/templates/plugin/BcSearchIndex/SearchIndexes/search.php
index 41e770caf7..5163b4205a 100755
--- a/plugins/bc-front/templates/plugin/BcSearchIndex/SearchIndexes/search.php
+++ b/plugins/bc-front/templates/plugin/BcSearchIndex/SearchIndexes/search.php
@@ -32,7 +32,7 @@
BcBaser->formControl('f', ['type' => 'select', 'options' => $contentFolders, 'empty' => __d('baser_core', 'カテゴリ')]) ?>
- BcBaser->formControl('q', ['placeholder' => __d('baser_core', 'キーワード'), 'escape' => false, 'div' => false]) ?>
+ BcBaser->formControl('q', ['placeholder' => __d('baser_core', 'キーワード'), 'div' => false]) ?>
BcBaser->formHidden('s') ?>
BcBaser->formSubmit(__d('baser_core', '検索'), ['div' => false, 'class' => 'bs-button-small']) ?>
BcBaser->endForm() ?>