thats right.
take a look into your settinggroup table
write down the settingroupid for the donation, in my case 41.
so i change the sql query from
PHP Code:
INSERT INTO setting (settingid,settinggroupid,title,varname,value,description,optioncode,displayorder) VALUES (NULL,'Bronze Donator','bronze','10','How much of a donation is required to be a bronze level contributor','','1')
to
PHP Code:
INSERT INTO setting (settingid,settinggroupid,title,varname,value,description,optioncode,displayorder) VALUES (NULL,'41','Bronze Donator','bronze','10','How much of a donation is required to be a bronze level contributor','','1')
this worked for me. simply exchange the 41 in the example with your matching settinggroupid.
kreftt