You are here

function library_update_6204 in Library 6.2

File

./library.install, line 268
@author Jess Straatmann library.install Install and uninstall all required databases. Also do incremental database updates.

Code

function library_update_6204() {
  if (module_exists('patron')) {
    module_disable(array(
      'patron',
    ));
    drupal_uninstall_module('patron');
    cache_clear_all();
    menu_rebuild();
  }
  return array();
}