Index: modules/system/system.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.install,v
retrieving revision 1.216
diff -u -p -r1.216 system.install
--- modules/system/system.install 20 Dec 2007 08:57:55 -0000 1.216
+++ modules/system/system.install 22 Dec 2007 01:17:13 -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(t('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 have been removed from all roles on your site. If you would like to reenable any delete permissions, you can do this at the Permissions page.', array('@permissions_url' => url('admin/user/permissions', array('fragment' => 'module-node')))));
+
+ return $ret;
+}
+
+/**
* @} End of "defgroup updates-5.x-to-6.x"
* The next series of updates should start at 7000.
*/