Index: linktocontent.info =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/linktocontent/linktocontent.info,v retrieving revision 1.4 diff -u -r1.4 linktocontent.info --- linktocontent.info 8 Oct 2007 15:18:09 -0000 1.4 +++ linktocontent.info 25 Apr 2008 13:07:04 -0000 @@ -2,4 +2,3 @@ name = "Linktocontent" description = "Provides a small 'API' for TinyMCE plugins to work with drupal data and functionality." package = Content -dependencies = tinymce Index: linktocontent.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/linktocontent/linktocontent.module,v retrieving revision 1.12 diff -u -r1.12 linktocontent.module --- linktocontent.module 8 Oct 2007 15:18:09 -0000 1.12 +++ linktocontent.module 25 Apr 2008 13:07:25 -0000 @@ -106,7 +106,7 @@ $status = array(); foreach (_linktocontent_get_registered_plugins() as $plugin_name) { $plugin = _linktocontent_plugin_info($plugin_name); - if (module_invoke($plugin_name, 'check_files') == FALSE) { + if (!module_exists('fckeditor') && module_invoke($plugin_name, 'check_files') == FALSE) { drupal_set_message(t('There seems to be an error with the installation of @module. Please check you copied all files from linktocontent/tinymce_plugins/@plugin to the TinyMCE plugin directory.', array('@module' => $plugin_name, Index: linktocontent_util.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/linktocontent/linktocontent_util.inc,v retrieving revision 1.3 diff -u -r1.3 linktocontent_util.inc --- linktocontent_util.inc 8 Oct 2007 15:18:09 -0000 1.3 +++ linktocontent_util.inc 25 Apr 2008 13:07:48 -0000 @@ -50,6 +50,9 @@ * @param $plugin The name of the plugin to install. **/ function _linktocontent_autoinstall($plugin) { + if (module_exists('fckeditor')) { + return true; + } $plugin_reg = drupal_get_path('module', 'tinymce') .'/plugin_reg.php'; // check if plugin_reg.php exists if (!file_exists($plugin_reg)) {