MyBB Community Forums

Full Version: Mybb GID consistency
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I found out today that your GID's are different for 1.4x than 1.2x. If you have a forum that's an upgrade from 1.2x however it's not corrected. This creates an inconsistency and a small problem for plugin authors that create settings inside existing GID's.

Can anything be done about this? I realize it's probably very low priority but still consider something.
Which ones are different?? I didn't notice this myself.
All of them.

I have added this to the top of my plugin activations which should take care of the problem.

Quote: $query = $db->simple_select("settinggroups", "gid", "name='SETTINGNAME");
$gid = $db->fetch_field($query, "gid");

Then when creating the settings array use $gid for the gid.

Exampe:

Quote: "gid" => $gid,

So other authors feel free to use that.
You should always call a setting / setting group by it's code name - that's why we have it there for.