1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 12:20:44 +02:00

Bugtracker #4944 - spurious characters in links

This commit is contained in:
e107steved
2010-05-01 20:45:54 +00:00
parent 58d06df6fd
commit 511632748f

View File

@@ -154,7 +154,7 @@ function setlink($link_name, $link_url, $link_open, $link_description)
$link_append = '';
}
$link = "<a style='text-decoration:none' title='".$link_description."'{$link_append}{$href}')\">".$link_name."</a>\n";
$link = "<a style='text-decoration:none' title='".$link_description."'{$link_append}{$href} >".$link_name."</a>\n";
return $link;
}