4
Yep, it's easy to perform. I'll add this to next release.
In the meanwhile, if you want to do it yourself, edit the 'block/multimenu.php' file and change the following line :
if (
(eregi("http://", $myrow['link'])) ||
(eregi("https://", $myrow['link'])) ||
(eregi("ftp://", $myrow['link'])))
{
$link = $myrow['link'];
} else {
$link = XOOPS_URL."/".$myrow['link'];
}
in
if (
(eregi("http://", $myrow['link'])) ||
(eregi("mailto:", $myrow['link'])) ||
(eregi("https://", $myrow['link'])) ||
(eregi("ftp://", $myrow['link'])))
{
$link = $myrow['link'];
} else {
$link = XOOPS_URL."/".$myrow['link'];
}
Do the same operation with the multimenu_add file as well.