Quote:
Originally Posted by Leo Brazil
Man, I have to say, fastest support I ever had on here !! You should charge for your mod, I woudn't mind to pay.
Yes, double checking it, you're right, it seems only happens with "&".
|
This will be corrected in the next upload. If you want a fix now, here's what to do:
Edit includes/local_links_include.php, line 2369, change:
PHP Code:
while ($rec=$vbulletin->db->fetch_array($asb)) {
foreach ($usernames as $k=>$v) {
if ($v==$rec['username']) {
to
PHP Code:
while ($rec=$vbulletin->db->fetch_array($asb)) {
foreach ($usernames as $k=>$v) {
$hv = htmlspecialchars_uni($v);
if ($hv==$rec['username']) {