********************************************************************
CUSTOMIZATION:
-- To print the site logo add this line to print.tpl.php:
-<img src="<?php print theme_get_setting('logo'); ?>" alt="logo" border="0" />
-
-- Though it is not recommended to open links in a new window you can change
-theme_print_link() in print.module if you really want to force it:
+- Though it is not recommended to open links in a new window you can
+change theme_print_link() in print.module if you really want to force
+it. It might be look like this:
function theme_print_link($node) {
- $attributes = array("target"=> "_blank");
- return l(t('printer friendly page'), "node/$node->nid/print",$attributes);
+ $attr = array("target"=> "_blank");
+ return l(t('printer friendly page'),"node/$node->nid/print",$attr);
}