WebGUI 2.2.0 release

This commit is contained in:
JT Smith 2001-10-18 05:15:00 +00:00
parent bd9cf300a1
commit 794b4a319c
23 changed files with 779 additions and 115 deletions

View file

@ -26,7 +26,7 @@ sub process {
} else {
$temp .= '?makePrintable=1';
}
$temp = '<a href="'.$temp.'">'.$1.'</a>';
$temp = '<a class="makePrintable" href="'.$temp.'">'.$1.'</a>';
$output =~ s/\^r(.*)\^\/r/$temp/g;
} elsif ($output =~ /\^r/) {
$temp = $session{env}{REQUEST_URI};
@ -35,7 +35,7 @@ sub process {
} else {
$temp .= '?makePrintable=1';
}
$temp = '<a href="'.$temp.'">';
$temp = '<a class="makePrintable" href="'.$temp.'">';
$temp .= WebGUI::International::get(53);
$temp .= '</a>';
$output =~ s/\^r/$temp/g;