[Plugin: Toggle Box] Bugfix for 3.3.1
-
The problem is in the function
add_plugin
. It has a line$plugin_array['toggle'] = plugins_url.'toggle-box/js/mce.js');
This does not work. Under 3.3.1, it needs to read:
$plugin_array[‘toggle’] = plugins_url(‘js/mce.js’, __FILE__);
Plugin_url is a function; then it suddenly starts loading the right javascript file.
This probably is not truly the way this should be mended, but at least it gets the plugin to run again.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘[Plugin: Toggle Box] Bugfix for 3.3.1’ is closed to new replies.