You are here

function redirect_update_7100 in Redirect 7.2

Same name and namespace in other branches
  1. 7 redirect.install \redirect_update_7100()

Rebuild the registry and clear the entity info cache.

File

./redirect.install, line 232
Install, update and uninstall functions for the redirect module.

Code

function redirect_update_7100() {
  if (!class_exists('RedirectController')) {
    registry_rebuild();
    entity_info_cache_clear();
  }
}