1
Hello xoopsers,
Ive been attempting to get my site to validate and I had some strange errors on the validator, let me explain.
On one page I had one error, a missing closing tag, so i fixed this and it gave me even more errors.
A couple of errors where to do with attributes contruct errors in the mytabs module.
Basically there was no space between rel="" and class="tabs-selected". I believe this threw some other errors such as tag mismatch, etc which i just dont think existed.
Anyway to fix the attributes contruct error with mytabs open up blocks/mytabs_block.php and on line 56 find the line
$selected = 'class="tabs-selected"';
And in the value for the variable ad a space at the very start like so
$selected = ' class="tabs-selected"';
and this should fix the attributes construct error.