似乎這個問題只有發生在Mac版的Firefox 3上,修改方式很簡單,請參考下面的說明:
將post_form.htm中的這段程式碼去掉包圍<#include "post_xxx_tab.htm" />前後的<div>及</div>即可。
修改前:
<!-- Post Options -->
<div id="postOptions" class="postTabContents">
<div>
<#include "post_options_tab.htm"/>
</div>
</div>
<!-- Poll tab -->
<#if allowPoll>
<div id="postPoll" class="postTabContents" style="display: none;">
<div>
<#include "post_poll_tab.htm"/>
</div>
</div>
</#if>
<!-- Attachments tab -->
<#if attachmentsEnabled || attachments?exists>
<div id="postAttachments" class="postTabContents" style="display: none; ">
<div>
<#include "post_attachments_tab.htm"/>
</div>
</div>
</#if>
修改後:
<!-- Post Options -->
<div id="postOptions" class="postTabContents">
<#include "post_options_tab.htm"/>
</div>
<!-- Poll tab -->
<#if allowPoll>
<div id="postPoll" class="postTabContents" style="display: none;">
<#include "post_poll_tab.htm"/>
</div>
</#if>
<!-- Attachments tab -->
<#if attachmentsEnabled || attachments?exists>
<div id="postAttachments" class="postTabContents" style="display: none;">
<#include "post_attachments_tab.htm"/>
</div>
</#if>
請幫忙測試如此修改之後在 Mac 及 Windows 7 上面的Firefox 3 是否都可以正常運作,謝謝。
參考資料:
http://jforum.net/posts/list/4729.page#19138