| Invalid xhtml code in xoops |
| by cmagana on 2006/1/4 7:26:57 many portions of code in XOOPS core have invalid code xhtml, by example, in file class/xoopstree.php line 195 is: le="color: #000000"><?php $path = "<a href='".$funcURL."&".$this->id."=".$sel_id."'>".$name."</a> : ".$path.""; but the correct way to do is: le="color: #000000"><?php $path = "<a href='".$funcURL."&amp;".$this->id."=".$sel_id."'>".$name."</a> : ".$path.""; Note that ampersands in URL must be & please read it: http://www.htmlhelp.com/tools/validator/problems.html#amp I hope that development team consider this recomendation. |