From df52a0ab48d4c42092430d0a5422e5b5df35a550 Mon Sep 17 00:00:00 2001 From: Tim Steiner <tsteiner2@unl.edu> Date: Fri, 6 Aug 2010 19:17:59 +0000 Subject: [PATCH] Since we're no longer using a vanilla tinymce install, there's no reason to load the unl module as if it were external. git-svn-id: file:///tmp/wdn_thm_drupal/branches/drupal-7.x@144 20a16fea-79d4-4915-8869-1ea9d5ebf173 --- sites/all/modules/unl/unl.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/all/modules/unl/unl.module b/sites/all/modules/unl/unl.module index 58f15e10..fadcb77b 100644 --- a/sites/all/modules/unl/unl.module +++ b/sites/all/modules/unl/unl.module @@ -17,7 +17,7 @@ function unl_wysiwyg_plugin($editor) // A URL to the plugin's homepage. 'url' => 'http://gforge.unl.edu/gf/project/wdn_tinymce/', // The full path to the native editor plugin. - 'path' => drupal_get_path('module', 'unl') . '/tinymce/editor_plugin.js', + 'path' => $editor['library path'] . '/plugins/unl', // A list of editor extensions provided by this native plugin. // Extensions are not displayed as buttons and touch the editor's // internals, so you should know what you are doing. @@ -25,7 +25,7 @@ function unl_wysiwyg_plugin($editor) // Boolean whether this plugin is a native plugin, i.e. shipped with // the editor. Definition must be ommitted for plugins provided by // other modules. - 'internal' => FALSE, + 'internal' => TRUE, // Boolean whether the editor needs to load this plugin. When TRUE, // the editor will automatically load the plugin based on the 'path' // variable provided. If FALSE, the plugin either does not need to -- GitLab