There is a minor change with 3.6.1 that affects this add-on. One of the things to 'find' in functions_editor.php has changed slightly. I've added a second set of installation instructions for 3.6.1 to the zip file.
Finding:
PHP Code:
else
{
$vBeditJs['smilie_options_array']["$smilie[category]"][] = "\t\t'more' : '" . addslashes_js($vbphrase['show_all_smilies']) . "'\n";
break;
}
}
Becomes:
PHP Code:
else
{
$vBeditJs['smilie_options_array']["$prevcategory"][] = "\t\t'more' : '" . addslashes_js($vbphrase['show_all_smilies']) . "'\n";
break;
}
$prevcategory = $smilie['category'];
}
dknelson, it sounds like you placed the add-on's code either before or immediately after:
PHP Code:
$prevcategory = $smilie['category'];
It should be after the closing bracket after that line.
If you're unsure, get an unaltered copy of the 'functions_editor.php' file and make the modifications as shown in the 'Install_3.6.1' file I uploaded in the new zip.