Quote:
Originally posted by michealo
can someone help me with this error i get when clicking on the profile button of one of my members?
would deleting the member, and re-adding him, fix this?
thank you
|
Find in member.php this line:
PHP Code:
$startcount = $DB_site->query_first("SELECT COUNT(title) AS starts FROM thread WHERE postusername='$userinfo[username]' AND open!='10'");
And change it to:
PHP Code:
$startcount = $DB_site->query_first("SELECT COUNT(title) AS starts FROM thread WHERE postusername='".addslashes($userinfo[username])."' AND open!='10'");