You are here

function print_update_6001 in Printer, email and PDF versions 6

Same name and namespace in other branches
  1. 5.x print.install \print_update_6001()

Update to version 6.x-1.0

File

./print.install, line 196
Install file of the print module

Code

function print_update_6001() {
  $ret = array();
  $lastversion = drupal_get_installed_schema_version('print');
  if ($lastversion >= 5301 && $lastversion < 6000) {
    return $ret;
  }
  menu_rebuild();
  return $ret;
}