Can i suggest the code in INSTALL.TXT is modified from this;
function theme_print_link($node) {
$attributes = array("target"=> "_blank");
return l(t('printer friendly page'), "node/$node->nid/print",$attributes);
}
to the following to keep the title tag for the link
function theme_print_link($node) {
$attributes = array("target"=> "_blank", "title" => "Display a printer friendly version of this page.");
$links = l(t('printer friendly version'), "node/$node->nid/print",$attributes );
return $links;
}
Comments
Comment #1
deekayen commentedComitted to CVS for Drupal 4.7 (but not tagged for 4.7 packaging). Also modified print.module's function to match INSTALL.txt's example. Needs backport for older versions.
Comment #2
deekayen commenteddidn't change status