function notifications_update_6001 in Notifications 6.3
Same name and namespace in other branches
- 6.4 notifications.install \notifications_update_6001()
- 6 notifications.install \notifications_update_6001()
- 6.2 notifications.install \notifications_update_6001()
Multiple fixes
File
- ./
notifications.install, line 332
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;
}