In your addlink.php file look for:
PHP Code:
$unhtml_linkname = unhtmlspecialchars(stripslashes($link['name']));
$linkname = stripslashes($link['name']);
$description = unhtmlspecialchars(stripslashes($link['description']));
$linkurl = unhtmlspecialchars(stripslashes($link['url']));
$keywords = unhtmlspecialchars(stripslashes($link['keywords']));
Replace that with:
PHP Code:
$unhtml_linkname = stripslashes($link['name']);
$linkname = stripslashes($link['name']);
$description = stripslashes($link['description']);
$linkurl = stripslashes($link['url']);
$keywords = stripslashes($link['keywords']);
And that should fix the problem.