This is a hack for allowing HTML in content titles. Works great. However, I have not tested to see whether it also works in module titles.
The answer was actually provided by a gentleman named
Toubkal
on the joomla.org forum. He warns:As I am not certain about the full implications of allowing html in the title, I would not use this hack on a site where there are other people contributing content, who cannot be trusted.
Use FTP to navigate to -
/includes/joomla.php
about line 2560, function called CHECK
/**
* Validation and filtering
*/
function check() {
// filter malicious code
$ignoreList = array( 'introtext', 'fulltext', 'title' );
$this->filter( $ignoreList );
here you can see, I have added , 'title' to the ignore list, which lets you add html in the title without it getting stripped.
Hope that helps.