mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-09 15:38:27 +01:00
fix for Nathan to allow again ':' in the links
This commit is contained in:
parent
3e6921d5b9
commit
45fa4d0c1c
@ -973,7 +973,7 @@ class html
|
|||||||
$vars = $url;
|
$vars = $url;
|
||||||
$url = '/index.php';
|
$url = '/index.php';
|
||||||
}
|
}
|
||||||
elseif (!strstr($url,'/') && count(explode('.',$url)) >= 3 && !strstr($url,':'))
|
elseif (!strstr($url,'/') && count(explode('.',$url)) >= 3 && !(strstr($url,'mailto:') || strstr($url,'://')))
|
||||||
{
|
{
|
||||||
$url = "/index.php?menuaction=$url";
|
$url = "/index.php?menuaction=$url";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user