fix for bug #9

This commit is contained in:
Ralf Becker 2006-10-13 15:55:00 +00:00
parent b3f8cf1512
commit 4586e3c267

View File

@ -974,7 +974,7 @@ class html
$vars = $url;
$url = '/index.php';
}
elseif (!strstr($url,'/') && count(explode('.',$url)) == 3 && !strstr($url,':'))
elseif (!strstr($url,'/') && count(explode('.',$url)) >= 3 && !strstr($url,':'))
{
$url = "/index.php?menuaction=$url";
}