It's not as simple as it ight be, but I'll try to explain how to work it out.
First of all, decompress the zip that contains all files. There, in the first level "/" you'll find a file called "fckconfigjoomla.js". In line 73 you've got to replace
FCKConfig.ProtectedSource.Add( /<HR ID=.*\/>/i ); for FCKConfig.ProtectedSource.Add( /<hr id="system-readmore" \/>/gi );
and in line 112 you 've got to replace if (FCKTempBin.Elements[i].toLowerCase() == '<hr id="system-readmore" />') for if (typeof(FCKTempBin.Elements[i]) == 'string' && FCKTempBin.Elements[i].toLowerCase() == '<hr id="system-readmore" />')
Create a new zip with the whole package, uninstall, upload and install it again to your Joomla! installation.
Re: Inserting flash in editor freezes joomla!
I just have resolved the same issue.
It's not as simple as it ight be, but I'll try to explain how to work it out.
First of all, decompress the zip that contains all files. There, in the first level "/" you'll find a file called "fckconfigjoomla.js". In line 73 you've got to replace
FCKConfig.ProtectedSource.Add( /<HR ID=.*\/>/i );
for
FCKConfig.ProtectedSource.Add( /<hr id="system-readmore" \/>/gi );
and in line 112
you 've got to replace
if (FCKTempBin.Elements[i].toLowerCase() == '<hr id="system-readmore" />')
for
if (typeof(FCKTempBin.Elements[i]) == 'string' && FCKTempBin.Elements[i].toLowerCase() == '<hr id="system-readmore" />')
Create a new zip with the whole package, uninstall, upload and install it again to your Joomla! installation.
That's it!
= )
C U.