True.Rooster is almost correct. The reason why your getting that error is because you still have code in the usergroup.php file. When you try to save any usergroup, its trying to save the siguploader permissions cause there still code in the usergroup.php file. If you go into phpmyadmin, your not going to find that feild cause it don't exisit.
In usergroup.php Find and Remove:
PHP Code:
, 'siguploader' => 1
Then Find and remove:
PHP Code:
'siguploadermaxwidth' => 500, 'siguploadermaxheight' => 125, 'siguploadermaxsize' => 25000
Then find and remove:
PHP Code:
print_table_header($vbphrase['signature_uploading_permissions']);
print_yes_no_row($vbphrase['can_upload_signature'], 'usergroup[siguploader]', $ug_bitfield['siguploader']);
print_input_row($vbphrase['upload_signature_max_width'], 'usergroup[siguploadermaxwidth]', $usergroup['siguploadermaxwidth']);
print_input_row($vbphrase['upload_signature_max_height'], 'usergroup[siguploadermaxheight]', $usergroup['siguploadermaxheight']);
print_input_row($vbphrase['upload_signature_max_filesize'] . '<br /><span class="smallfont">1KB = 1024 bytes</span>', 'usergroup[siguploadermaxsize]', $usergroup['siguploadermaxsize']);
print_table_break();
Thats all the code that belongs in usergroup.php to make my hack work. So get rid of it all and it will be fine.