I don't have any
TABLE_PREFIX's in my db, how do I update my code so it it doesn't read
TABLE_PREFIX in the banning.php file?
Thanks
Quote:
Originally Posted by sv1cec
Here is what my file looks like, in that area. Compare it with yours.
PHP Code:
// there is already a record - just update this record $DB_site->query(" UPDATE " . TABLE_PREFIX . "userban SET adminid = $bbuserinfo[userid], bandate = " . TIMENOW . ", liftdate = $liftdate, reason = '" . addslashes($reason) . "' WHERE userid = $user[userid] "); } else { // insert a record into the userban table $DB_site->query(" INSERT INTO " . TABLE_PREFIX . "userban (userid, usergroupid, displaygroupid, customtitle, usertitle, adminid, bandate, liftdate, reason) VALUES ($user[userid], $user[usergroupid], $user[displaygroupid], $user[customtitle], '" . addslashes($user['usertitle']) . "', $bbuserinfo[userid], " . TIMENOW . ", $liftdate, '" . addslashes($reason) . "') "); } // update the user record $DB_site->query(" UPDATE " . TABLE_PREFIX . "user SET $bantitlesql usergroupid = $usergroupid, displaygroupid = 0 WHERE userid = $user[userid] "); define('CP_REDIRECT', 'banning.php'); if ($period == 'PERMANENT') { print_stop_message('user_x_has_been_banned_permanently', $user['username']); } else { print_stop_message('user_x_has_been_banned_until_y', $user['username'], vbdate("$vboptions[dateformat] $vboptions[timeformat]", $liftdate)); }
Rgds
|
I think I figured it out, at least I'm not getting any errors when I try to access banned users from the modcp?
Since I don't use Table Prefix's, all I did was delete the green portion below:
$DB_site->query("
UPDATE
" . TABLE_PREFIX . "userban SET
adminid = $bbuserinfo[userid],
bandate = " . TIMENOW . ",
liftdate = $liftdate
WHERE userid = $user[userid]
");
is that right, or should I have done something else?