1
Is Xhtml compliance still a goal for Xoops?
It looks like the frontpage is Xhtml compliant, which is good. But when I submit my own internal development page, I run into problem for an admin block: the waiting contents (ok, this block is not supposed to be visible).
Here is the message from the W3C Validator:
Quote:
“unknown entity ‘FOO’”
The validator has found an entity (something like &this;) that it doesn't recognize. There are a few possibilities:
*
A reference to a URI that uses & as a separator between parameters, such as "http://example.org/prog?x=1&y=2".
To solve this problem, simply replace all the &'s in attribute values with & (user agents will convert them back before following the links.)
The problem is the
index.php?op=..&...
which should , in the source code, be
index.php?op= .. &..
... if I'm not wrong ...