You are here

function path_alias_xt_update_7100 in Extended Path Aliases 7

Implements hook_update_N().

Reduce module weight to work with Context and menu_trail_by_path modules.

File

./path_alias_xt.install, line 47
Install and uninstall hooks for path_alias_xt module.

Code

function path_alias_xt_update_7100() {

  // See comment at path_alias_xt_install().
  db_update('system')
    ->fields(array(
    'weight' => -1,
  ))
    ->condition('name', 'path_alias_xt')
    ->execute();
}