You are here

bakery.install in Bakery Single Sign-On System 6

File

bakery.install
View source
<?php

/**
 * Implementation of hook_update_N().
 */
function bakery_update_6001() {
  $ret = array();
  if (module_exists('path')) {
    db_query("DELETE FROM {url_alias} WHERE source = 'bakery' AND dst IN ('user/login', 'user/register')");
  }
  return $ret;
}

Functions

Namesort descending Description
bakery_update_6001 Implementation of hook_update_N().