デバッグ文
以前の対応で、エンコードまわりを触ってるようですので、その辺の変更が影響してる可能性も
あるかもしれません。classes/ajaxSearchPopup.class.inc.phpにデバッグ文を入れて、
少しづつ追いかけてみてはいかがでしょう。
ですが、順を追って始めからやり直してみようと思います。”検索窓の部分のHTMLタグ”というところがはっきり理解できないのですが・・・
スニペッドコードで呼び出した検索窓の部分のHTMLタグにBOMが付加されている状態
<div class="AS_ajax_result"> <a title="意図的な拡張" href="/hoge/features/extendable.html?searched=%E6%84%8F%E5%9B%B3%E7%9A%84&advsearch=oneword&highlight=ajaxSearch_highlight+ajaxSearch_highlight1" class="AS_ajax_resultLink">意図的な拡張</a> </div>
<div class="AS_ajax_result"> <a title="ï»....意図的な拡張" href="/hoge/features/extendable.html?searched=(ゴニョゴニョ)%E6%84%8F%E5%9B%B3%E7%9A%84&advsearch=oneword&highlight=ajaxSearch_highlight+ajaxSearch_highlight1" class="AS_ajax_resultLink">ï»....意図的な拡張</a> </div>
[+as.showForm:is=`1`:then=`
<form [+as.formId+] action="[+as.formAction+]" method="post">
<div id="search_box">
<input type="hidden" name="advSearch" value="[+as.advSearch+]" />
<label for="ajaxSearch_input">
<input id="ajaxSearch_input" class="cleardefault" type="text" name="search" value="[+as.inputValue+]"[+as.inputOptions+] />
</label>
<label for="ajaxSearch_submit">
<input id="ajaxSearch_submit" type="submit" name="sub" value="[+as.submitText+]" />
</label>
</div>
</form>
`+]
<!--
[+as.showIntro:is=`1`:then=`
<p class="ajaxSearch_intro" id="ajaxSearch_intro">[+as.introMessage+]</p>
`+]
-->
[+as.showResults:is=`1`:then=`
[+as.results+]
`+]
(ゴニョゴニョ)<form id="ajaxSearch_form" action="result.htm" method="post">
<div id="search_box">
<input type="hidden" name="advSearch" value="oneword" />
<label for="ajaxSearch_input">
<input id="ajaxSearch_input" class="cleardefault" type="text" name="search" value="検索語を入力してください" onfocus="this.value=(this.value=='検索語を入力してください')? '' : this.value ;" />
</label>
<label for="ajaxSearch_submit">
<input id="ajaxSearch_submit" type="submit" name="sub" value="検索" />
</label>
</div>
</form>
<!--
<p class="ajaxSearch_intro" id="ajaxSearch_intro">検索語を入力してください</p>
-->
AjaxSearch関係のファイルをコピーして現象が発生しないのであればスタイルシートは関係なさそうですね。
ちなみにテスト段階の別サーバーでは、正常に表示されていたので
それらのAjaxSearch関係のファイルをコピーして使っています。
