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 :
le="color: #000000"><?php if ( (eregi("http://", $myrow['link'])) || (eregi("https://", $myrow['link'])) || (eregi("ftp://", $myrow['link']))) { $link = $myrow['link']; } else { $link = XOOPS_URL."/".$myrow['link']; }
in
le="color: #000000"><?php 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.