1

这是我第一次使用 Joomla。我正在编辑一个网站,如果我更改模块中的代码并保存它,Joomla 会将 \" 添加到所有属性。

这是我的代码

<div class="container-fluid"> 
<h1 id="consumers">Per chi compra</h1> 
<div class="row-fluid"> 
<div class="span3 gk-demo-content"><img src="templates/meet_gavern/images/content/icon_tick.png" alt="Affidabile, come PayPal" title="TrustBack.me è affidabile" width="109" height="109" /> 
<h2>Affidabile. Come PayPal.</h2> 
<p>Misuriamo l'affidabilità del commercio elettronico. E quando è vero, ci permettiamo anche di dire che un merchant non è affidabile.</p> 
</div>

这是 Joomla 编辑的代码:D

<div class="\&quot;container-fluid\&quot;">
<h1 id="\&quot;consumers\&quot;">Per chi compra</h1>
<div class="\&quot;row-fluid\&quot;">
<div class="\&quot;span3"><img src="\&quot;templates/meet_gavern/images/content/icon_tick.png\&quot;" alt="\&quot;Affidabile," title="\&quot;TrustBack.me" width="\&quot;109\&quot;" height="\&quot;109\&quot;" />
<h2>Affidabile. Come PayPal.</h2>
<p>Misuriamo l\'affidabilità del commercio elettronico. E quando è vero, ci permettiamo anche di dire che un merchant non è affidabile.</p>
</div>
4

1 回答 1

4

检查您的 php.ini 以查看您是否禁用了 Magic Quotes。如果您无权访问此文件,请通过以下方式检查 Joomla 后端:[System] -> [System Information] -> [PHP Setting]

如果它设置为"on",请询问您的主机是否可以为您关闭它。

此外,再次在 Joomla 后端,转到:[System] -> [Global Configuration] -> [Text Filter Settings]并确保为超级用户将其设置为“无过滤”

还请确保您运行的是最新版本的 Joomla 3.0 系列 (3.0.3)。

于 2012-11-29T00:27:16.827 回答