This is the first time I've used the plugin, so I didn't update. I have already tried reinstalling, even redownloading (from both the myBB website and github).
But while I was going back through it I noticed another piece to the puzzle that my eyes missed before. Just above that settings window (and only that window as far as I can tell) this error code appears: "Parse error: syntax error, unexpected T_STRING in /<URL to admin directory>/modules/config/settings.php(1119) : eval()'d code on line 2 "
I tried redownloading MyBB 1.6.9 (I run the latest version) and reuploading the original settings.php in admin/modules/config, to no avail.
In-case it helps, here is the code in the immediate vicinity of line 1119 in that settings.php:
Oh, and thank you for the information Destroy666. I edited the class name in the file you mentioned directly and it works as I wanted it to.
But while I was going back through it I noticed another piece to the puzzle that my eyes missed before. Just above that settings window (and only that window as far as I can tell) this error code appears: "Parse error: syntax error, unexpected T_STRING in /<URL to admin directory>/modules/config/settings.php(1119) : eval()'d code on line 2 "
I tried redownloading MyBB 1.6.9 (I run the latest version) and reuploading the original settings.php in admin/modules/config, to no avail.
In-case it helps, here is the code in the immediate vicinity of line 1119 in that settings.php:
$languages = $lang->get_languages(1);
$setting_code = $form->generate_select_box($element_name, $languages, $setting['value'], array('id' => $element_id));
}
else if($type[0] == "passwordbox")
{
$setting_code = $form->generate_password_box($element_name, $setting['value'], array('id' => $element_id));
}
else if($type[0] == "php")
{
$setting['optionscode'] = substr($setting['optionscode'], 3);
eval("\$setting_code = \"".$setting['optionscode']."\";");
}
else
{
for($i=0; $i < count($type); $i++)
{
$optionsexp = explode("=", $type[$i]);
if(!$optionsexp[1])
{
continue;
}
Oh, and thank you for the information Destroy666. I edited the class name in the file you mentioned directly and it works as I wanted it to.