function ajax_register_update_7406 in Ajax Login/Register 7.4
Make sure we're heavy so our form_alter hook gets executed last.
File
- ./
ajax_register.install, line 32 - Install, update and uninstall functions for the AJAX REGISTER module.
Code
function ajax_register_update_7406() {
db_update('system')
->fields(array(
'weight' => 1000,
))
->condition('name', 'ajax_register')
->execute();
}