Index: wysiwyg_panels.module =================================================================== --- wysiwyg_panels.module (revision 1247) +++ wysiwyg_panels.module (working copy) @@ -10,7 +10,7 @@ function wysiwyg_panels_init() { // TODO: find a better place to put this stuff. - if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == 'panel_content') { + if ((arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == 'panel_content') || (arg(0) == 'admin' && arg(1) == 'build' && arg(2) == 'panel-mini' && arg(4) == 'edit-content')) { if (module_exists('wysiwyg')) { foreach (filter_formats() as $format => $object) { if ($profile = wysiwyg_get_profile($format)) { @@ -44,4 +44,4 @@ '#weight' => 999, ); } -} \ No newline at end of file +}