function print_update_6118 in Printer, email and PDF versions 6
Enable block and help area links
File
- ./
print.install, line 386 - Install file of the print module
Code
function print_update_6118() {
$ret = array();
$link_pos = variable_get('print_html_link_pos', array(
'link' => 'link',
'block' => 'block',
'help' => 'help',
));
$link_pos['block'] = 'block';
$link_pos['help'] = 'help';
variable_set('print_html_link_pos', $link_pos);
return $ret;
}