Quote:
Originally Posted by AndrewD
Thanks for reporting this - I'll check and give you a fix.
updated...
if you are comfortable editing the code, I think this should do the trick..
take a copy of includes/local_links_include.php and edit.
go to line 1670
Code:
function lookup_userids($usernames) {
global $vbulletin;
$ids = array();
foreach ($usernames as $k=>$v) {
$usernames[$k] = trim($vbulletin->db->escape_string($v));
$ids[$k] = 0;
}
change to
Code:
function lookup_userids($usernames) {
global $vbulletin;
$ids = array();
foreach ($usernames as $k=>$v) {
$usernames[$k] = trim($vbulletin->db->escape_string(htmlspecialchars_uni($v)));
$ids[$k] = 0;
}
|
Hi Andrew,
thank you very much for your quick reply. Your code change did the trick, everything ist working fine now !!!!