Monday 13 March 2006 12:56:06 pm
Hi all, The "nbsp" problem seems to come from the literal view handler. In order to correct it, you should replace the file "extension/fckeditor/design/standard/templates/content/datatype/view/ezxmltags/literal.tpl" by the code below:
{if ne( $classification|trim, 'html' )}
<pre{if ne($classification|trim,'')} class="{$classification|wash}"{/if}>{$content|wash(xhtml)}</pre>
{else}
{$content}
{/if}
(overwrite all the previous content of file)
Then it shouldn't place any more spaces at the beginning. Hope it will help
|