Quote:
Originally Posted by klinsek
Got to page 13 and didn't see anyone cover this error...
Warning: mysql_real_escape_string() expects parameter 1 to be string, array given in /includes/class_core.php on line 635
Any ideas?
|
I believe it's because of the vb version. Try editing sr_classifieds.php and search for:
Code:
if($permissions['sr_classifieds'] & $vbulletin->bf_ugp['sr_classifieds']['canedit'] OR $bbuserinfo[userid] == $user[userid]){
Change that to:
Code:
if($permissions['sr_classifieds'] & $vbulletin->bf_ugp['sr_classifieds']['canedit'] OR $vbulletin->userinfo[userid] == $user[userid]){