You are here

function print_update_6004 in Printer, email and PDF versions 5.x

Same name and namespace in other branches
  1. 6 print.install \print_update_6004()

Update to version 6.x-1.11

File

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

Code

function print_update_6004() {
  $ret = array();

  // BLOCK_CACHE_PER_PAGE -> 4
  $ret[] = update_sql("UPDATE {blocks} SET cache = 4 WHERE module = 'print' AND delta = '0'");

  // BLOCK_CACHE_GLOBAL -> 8
  $ret[] = update_sql("UPDATE {blocks} SET cache = 8 WHERE module = 'print' AND delta = '1'");
  return $ret;
}