Index: CHANGELOG.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/input_formats/CHANGELOG.txt,v
retrieving revision 1.5
diff -u -p -r1.5 CHANGELOG.txt
--- CHANGELOG.txt	10 Jun 2010 17:43:35 -0000	1.5
+++ CHANGELOG.txt	15 Jun 2010 16:04:13 -0000
@@ -1,5 +1,10 @@
 // $Id: CHANGELOG.txt,v 1.5 2010/06/10 17:43:35 dagmar Exp $
 
+Input Formats 6.x-1.0-dev
+--------------------------
+
+- #828140: Wysiwyg features are marked as overridden when they are not.
+
 Input Formats 6.x-1.0-ALPHA2, 2010-10-04
 ----------------------------------------
 
Index: input_formats.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/input_formats/input_formats.module,v
retrieving revision 1.4
diff -u -p -r1.4 input_formats.module
--- input_formats.module	10 Jun 2010 17:36:29 -0000	1.4
+++ input_formats.module	15 Jun 2010 16:04:13 -0000
@@ -257,3 +257,12 @@ function ingput_formats_wysiwyg_import_p
 function input_formats_wysiwyg_features_revert_alter(&$objects) {
   input_formats_wysiwyg_load_profiles_alter($objects);
 }
+
+/**
+ * Implementation of hook_wysiwyg_defaults_alter().
+ *
+ * This hook is called from _ctools_export_get_defaults()
+ */
+function input_formats_wysiwyg_defaults_alter(&$cache) {
+  input_formats_wysiwyg_load_profiles_alter($cache);
+}
