You are here

function print_mail_update_6118 in Printer, email and PDF versions 6

Enable block and help area links

File

print_mail/print_mail.install, line 332
Install file of the print_mail module

Code

function print_mail_update_6118() {
  $ret = array();
  $link_pos = variable_get('print_mail_link_pos', array(
    'link' => 'link',
    'block' => 'block',
    'help' => 'help',
  ));
  $link_pos['block'] = 'block';
  $link_pos['help'] = 'help';
  variable_set('print_mail_link_pos', $link_pos);
  return $ret;
}