Index: modules/system/system.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.install,v
retrieving revision 1.217
diff -u -p -r1.217 system.install
--- modules/system/system.install 22 Dec 2007 23:24:25 -0000 1.217
+++ modules/system/system.install 24 Dec 2007 04:45:17 -0000
@@ -2874,6 +2874,18 @@ function system_update_6043() {
}
/**
+ * Display information about the separation of edit and delete permissions.
+ */
+function system_update_6044() {
+ $ret = array();
+
+ // Notify user that delete permissions may have been changed.
+ drupal_set_message('Drupal now has separate edit and delete permissions. Previously, users who were able to edit content were automatically allowed to delete it. For added security, delete permissions for individual core content types have been removed from all roles on your site (only roles with the "administer nodes" permission can now delete these types of content). If you would like to reenable any individual delete permissions, you can do this at the permissions page.');
+
+ return $ret;
+}
+
+/**
* @} End of "defgroup updates-5.x-to-6.x"
* The next series of updates should start at 7000.
*/