function contact_update_7000 in Contact 6.2
Same name and namespace in other branches
- 7.2 contact.install \contact_update_7000()
Rename the threshold limit variable.
File
- ./
contact.install, line 134 - Install, update and uninstall functions for the contact module.
Code
function contact_update_7000() {
variable_set('contact_threshold_limit', variable_get('contact_hourly_threshold', 5));
variable_del('contact_hourly_threshold');
return array();
}