Index: editors/tinymce.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/wysiwyg/editors/tinymce.inc,v
retrieving revision 1.33
diff -u -p -r1.33 tinymce.inc
--- editors/tinymce.inc	6 Jun 2009 01:22:17 -0000	1.33
+++ editors/tinymce.inc	8 Jun 2009 05:59:00 -0000
@@ -314,8 +314,10 @@ function wysiwyg_tinymce_themes($editor,
 function wysiwyg_tinymce_plugin_settings($editor, $profile, $plugins) {
   $settings = array();
   foreach ($plugins as $name => $plugin) {
-    if (empty($plugin['internal'])) {
-      if (isset($plugin['path'])) {
+    if (!empty($plugin['load'])) {
+      // Add path for native external plugins; internal ones are loaded
+      // automatically.
+      if (empty($plugin['internal']) && isset($plugin['path'])) {
         $settings[$name] = base_path() . $plugin['path'];
       }
     }
