It appears that at least one post 4.3.0 change is erronously in the 4.3.0 release. According to http://drupal.org/node/view/4128, the function drupal_set_message is new for after 4.3.0 - which appears right as I can't find it in the 4.3.0 includes directory anywhere.

The fix is the following patch (found by looking at the CVS diffs):

--- ../htmlarea/htmlarea.module Sun Jan 11 04:00:17 2004
+++ modules/htmlarea.module     Fri Jan 16 23:10:47 2004
@@ -95,7 +95,8 @@
 
   if (user_access("administer nodes")) {
     if ($_POST["op"] == t("Save configuration")) {
-      $output .= drupal_set_message(htmlarea_admin_save($_POST["edit"]));
+      $output .= status(htmlarea_admin_save($_POST["edit"]));
+
     }
 
     $output .= htmlarea_admin_view();

Thanks for all the great work on this module!

Comments

gordon’s picture

fixed in cvs

Anonymous’s picture