Quote:
Originally Posted by VBDev
Well yeah my fault, here is a fix for all the imports :
Search for :
Code:
name='" . $cchatbox_chats['username'] . "',
Replace it by :
Code:
name='" . $vbulletin->db->escape_string($cchatbox_chats['username']) . "',
Search for :
Code:
name='" . $dream_chats['username'] . "',
Replace it by :
Code:
name='" . $vbulletin->db->escape_string($dream_chats['username']) . "',
Search for :
Code:
name='" . $diondev_chats['username'] . "',
Replace it by :
Code:
name='" . $vbulletin->db->escape_string($diondev_chats['username']) . "',
|
Are you sure about this VBDev? Because looking thru my older versions of MGC they use the "$vbulletin->db->escape_string" syntax on the
ctext line and NOT the
name line... See picture below....