I found many people is having this issue, In their Joomla article or template unusual character like """ appearing automatically after saving it. Its happening in joomla 3.0 more. Let me tell you why this is happening.
Its happening because of Magic Quotes.
You need to disable Magic Quotes and this usual characters """ will stop coming. You can do it by simply calling your hosting support or using live chat. Or if you have access to your php.ini file , Set this.
So this is how you can fix the unusual character problem ( " ) in your joomla website. Enjoy
Its happening because of Magic Quotes.
Magic Quotes is a process that automatically escapes incoming data to the PHP script. It's preferred to code with magic quotes off and to instead escape the data at run-time, as needed.Its already deprecated in php 5.3 and will be removed in php 5.4
You need to disable Magic Quotes and this usual characters """ will stop coming. You can do it by simply calling your hosting support or using live chat. Or if you have access to your php.ini file , Set this.
magic_quotes_gpc = Off
So this is how you can fix the unusual character problem ( " ) in your joomla website. Enjoy