Hi...
I've rewrite code to web standard (w3c)
I've a problem with %category_path% (home > directory) because h ref are without ""
Ex: home > directory
code wrong:
<a href=/index.php>HomePage</a> > <a href=browse-directory-2-1.html>Directory</a></li>
code right:
<a href="/index.php">HomePage</a> > <a href="browse-directory-2-1.html">Directory</a></li>
In browse.php i've correct bug
$category_path = "<a href=\"/index.php\">".$msg["10011"]."</a>".$category_obj->separator.$category_path;
but how insert " in directory??
It's very important...
Thanks a lot...


