function user_restrictions_update_7101 in User restrictions 7
Updates the Drupal registry.
File
- ./
user_restrictions.install, line 97 - Implementing schema for the User restrictions module.
Code
function user_restrictions_update_7101(&$sandbox) {
registry_update();
db_update('system')
->fields(array(
'weight' => 10,
))
->condition('name', 'user_restrictions')
->execute();
}