fixing the fix: explicitly disallowing "javascript:" url's to be used as menuaction: fixes not working add email links in the addressbook popup for FMail

This commit is contained in:
Ralf Becker 2006-11-13 11:59:59 +00:00
parent e0e16ab18d
commit 084b53971c

View File

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