Update the url() function in common.inc to be XHTML compliant.
Replace the & with a &
if (variable_get('clean_url', '0') == '0') {
if (isset($path)) {
if (isset($query)) {
- return $base . $script .'?q='. $path .'&'. $query . $fragment;
+ return $base . $script .'?q='. $path .'&'. $query . $fragment;
}



