I got this db error earlier tonight and was wondering if someone could please tell me what it means?
The file in question is a signature editing file. Here is the code I thought was causing it:
Code:
if ($action=="SaveChanges") {
$newsignature=censortext($signatureform);
$DB_site->query("UPDATE user SET signature='".addslashes($newsignature)."' WHERE userid=$bbuserid");
and here is what I changed it to:
Code:
if ($action=="SaveChanges") {
$newsignature=censortext($signatureform);
$DB_site->query("UPDATE user SET signature='".addslashes($newsignature)."' WHERE userid='$bbuserinfo[userid]'");
The reason I changed "userid=$bbuserid" to "userid='$bbuserinfo[userid]'" was because in 2 other places in the same file on db queries they were using "userid='$bbuserinfo[userid]'" and not just userid=$bbuserid. Would that make a difference?