Closed (fixed)
Project:
Printer, email and PDF versions
Version:
4.6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
20 Sep 2005 at 07:23 UTC
Updated:
20 Dec 2005 at 20:41 UTC
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