Quote:
Originally Posted by yoyoyoyo
In PHPMyAdmin it says "2" under the contracts column, and I had previously clicked on a contract in Forum ID 2 before I got the error. Another user also has 2 in that column, and another user has 7 (and I had another contract in forum ID 7). I am not sure if this is how it works, but I will wait until later and will turn it back on. It may be a disk full error at my server, or something like that, since this worked well before. What would a database entry for that field with multiple contracts look like? Maybe it was erroring out because something was already there?
|
You found a bug.
In contracts.php, Find:
Code:
$contractlist = $contractlist . "," . $forumid;
Change it to:
Code:
$contractlist = $bbuserinfo[contracts] . "," . $forumid;