You are here

function notifications_update_6001 in Notifications 6.4

Same name and namespace in other branches
  1. 6 notifications.install \notifications_update_6001()
  2. 6.2 notifications.install \notifications_update_6001()
  3. 6.3 notifications.install \notifications_update_6001()

Multiple fixes

File

./notifications.install, line 362

Code

function notifications_update_6001() {
  $ret = array();

  // Fixed typo with variable name
  variable_set('notifications_send_immediate', variable_get('notifications_send_inmediate', 0));
  variable_del('notifications_send_inmediate');
  return $ret;
}