diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c6ffac87e7dc5ad230e911ce162a0f2c2ab42c66..2bb48b502655789edbef22285f89049d0d224535 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -2,6 +2,7 @@ $Id$ -- 2009-07-24 version 5.x-2.x-dev * #461234 Add notice that both profile and global profile rules apply +* #530184 Add notice about importance of fckeditor_php*.php files to README.txt -- 2009-05-14 version 5.x-2.x-dev * #445878 Added a "fckActiveId" variable for the active editor diff --git a/README.txt b/README.txt index d2af9f317b5743652bdcf620ae46d3492afe61b5..132e72d387c6e038330893f5b9a30cd92074349d 100644 --- a/README.txt +++ b/README.txt @@ -74,7 +74,8 @@ Installation troubleshooting ---------------------------- If your FCKeditor does not show you must check if all files are extracted correctly. The directory /drupal5/modules/fckeditor/fckeditor/ should have the following files: -fckeditor.js, fckconfig.js, fckstyles.xml, fcktemplates.xml and a directory named editor. +fckeditor.js, fckconfig.js, fckstyles.xml, fcktemplates.xml, fckeditor.php, +fckeditor_php4.php, fckeditor_php5.php and a directory named editor. The correct directory structure is as follows: modules diff --git a/fckeditor.module b/fckeditor.module index 289d867cf21163d528fb9393faf4eb4075b6cce6..01c535da73f31834dc39da2e0e22ab74fe263628 100644 --- a/fckeditor.module +++ b/fckeditor.module @@ -87,7 +87,7 @@ function fckeditor_help($section = '') {
 
'), '!filterlink' => l(t('filters'), 'admin/settings/filters')) ); - $output .= t('

Installation troubleshooting

If your FCKeditor does not show you must check if all files are extracted correctly. The directory %fckeditordir should have the following files fckeditor.js, fckconfig.js, fckstyles.xml, fcktemplates.xml and a directory named editor.

', + $output .= t('

Installation troubleshooting

If your FCKeditor does not show you must check if all files are extracted correctly. The directory %fckeditordir should have the following files fckeditor.js, fckconfig.js, fckstyles.xml, fcktemplates.xml, fckeditor.php, fckeditor_php4.php, fckeditor_php5.php and a directory named editor.

', array( '%fckeditordir' => base_path() . drupal_get_path('module', 'fckeditor') .'/fckeditor/') );