I made it! Change the following lines in /modules/mod_joomulus/helper.php:
Line 18
| Code: |
$tagcloud = '<tags>';
|
to
| Code: |
$tagcloud = '<span>';
|
Line 21:
| Code: |
$tagcloud2 .= "<a href='".$this-
>options[$count.'_url']."' target='".$this-
>options['target']."' style='font-size:".$this-
>options[$count.'_size']."'>".$this-
>options[$count.'_name']."</a>\n ";
|
to
| Code: |
$tagcloud2 .= "<a href='".htmlentities($this-
>options[$count.'_url'])."' target='".$this-
>options['target']."' style='font-size:".$this-
>options[$count.'_size']."'>".$this-
>options[$count.'_name']."</a>\n ";
|
and Line 29
| Code: |
$tagcloud .= $tagcloud2.'</tags>';
|
to
| Code: |
$tagcloud .= $tagcloud2.'</span>';
|
I don't get any validation errors anymore.
Greez and thanks for the amazing module!