? filters_help.patch
? sites/all/modules
? sites/all/themes
? sites/default/files
? sites/default/settings.php
Index: CHANGELOG.txt
===================================================================
RCS file: /cvs/drupal/drupal/CHANGELOG.txt,v
retrieving revision 1.246
diff -u -p -r1.246 CHANGELOG.txt
--- CHANGELOG.txt	10 Jan 2008 23:14:57 -0000	1.246
+++ CHANGELOG.txt	17 Jan 2008 21:23:30 -0000
@@ -47,7 +47,7 @@ Drupal 6.0, xxxx-xx-xx (development vers
     * Dynamically check password strength and confirmation.
     * Refactored poll administration.
     * Implemented drag-and-drop positioning for blocks, menu items, taxonomy
-      terms, and profile fields.
+      terms, profile fields, and input format filters.
 - Theme system:
     * Added .info files to themes and made it easier to specify regions and
       features.
Index: modules/filter/filter.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/filter/filter.module,v
retrieving revision 1.202
diff -u -p -r1.202 filter.module
--- modules/filter/filter.module	10 Jan 2008 22:47:17 -0000	1.202
+++ modules/filter/filter.module	17 Jan 2008 21:23:31 -0000
@@ -35,7 +35,7 @@ function filter_help($path, $arg) {
       return '<p>'. t('If you cannot find the settings for a certain filter, make sure you have enabled it on the <a href="@url">view tab</a> first.', array('@url' => url('admin/settings/filters/'. $arg[3]))) .'</p>';
     case 'admin/settings/filters/%/order':
       $output = '<p>'. t('Because of the flexible filtering system, you might encounter a situation where one filter prevents another from doing its job. For example: a word in an URL gets converted into a glossary term, before the URL can be converted to a clickable link. When this happens, rearrange the order of the filters.') .'</p>';
-      $output .= '<p>'. t('Filters are executed from top-to-bottom. You can use the weight column to rearrange them: heavier filters "sink" to the bottom.') .'</p>';
+      $output .= '<p>'. t("Filters are executed from top-to-bottom. To change the order of the filters, modify the values in the <em>Weight</em> column or grab a drag-and-drop handle under the <em>Name</em> column and drag filters to new locations in the list. (Grab a handle by clicking and holding the mouse while hovering over a handle icon.) Remember that your changes will not be saved until you click the <em>Save configuration</em> button at the bottom of the page.") .'</p>';
       return $output;
   }
 }
