You are here

function path_access_update_7100 in Path Access 7

Update 7100: Increase path_access' weight so that its the last thing that runs.

File

./path_access.install, line 48

Code

function path_access_update_7100() {
  db_update('system')
    ->fields(array(
    'weight' => 1001,
  ))
    ->condition('name', 'path_access')
    ->execute();
}