Dan,
One of the accessbility issues I was seeing was lack of quotes around
the vspace class related to the XHTML doctype...
<div class=vspace> </div>
Which should have been
<div class='vspace'> </div>
Found two areas that seem to effect that...
~467 in markups.php
from
if (strlen($x) > 1) $vspace = "\n<div class=vspace> </div>\n";^M
to
if (strlen($x) > 1) $vspace = "\n<div class='vspace'> </div>\n";^M
and
~720 in engine.php
from
$strip = "\n<div class=vspace> </div>\n";^M
to
$strip = "\n<div class='vspace'> </div>\n";^M
This was in the 3.09 code.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"BoltWire" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/boltwire?hl=en
-~----------~----~----~----~------~----~------~--~---