summaryrefslogtreecommitdiff
path: root/fml/lib/Mail/Message/ToHTML.pm
diff options
context:
space:
mode:
authortmu <tmu>2003-02-06 15:15:05 +0000
committertmu <tmu>2003-02-06 15:15:05 +0000
commit4a8e1856a566746a18f84e61b7e44b9526d278b2 (patch)
treea2965a69d5e1b7ecf2a6f2f76c78672fc81d7a43 /fml/lib/Mail/Message/ToHTML.pm
parent00379c8101b0a871a1acb921afea37e18dee1eb1 (diff)
downloadfml8-4a8e1856a566746a18f84e61b7e44b9526d278b2.tar.gz
fml8-4a8e1856a566746a18f84e61b7e44b9526d278b2.tar.bz2
fml8-4a8e1856a566746a18f84e61b7e44b9526d278b2.zip
quick hack at sub sub _print_inline_object_link() URL Link
Diffstat (limited to 'fml/lib/Mail/Message/ToHTML.pm')
-rw-r--r--fml/lib/Mail/Message/ToHTML.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/fml/lib/Mail/Message/ToHTML.pm b/fml/lib/Mail/Message/ToHTML.pm
index ce2b9549..f012cfee 100644
--- a/fml/lib/Mail/Message/ToHTML.pm
+++ b/fml/lib/Mail/Message/ToHTML.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: ToHTML.pm,v 1.33 2003/01/11 15:16:35 fukachan Exp $
+# $FML: ToHTML.pm,v 1.34 2003/01/26 05:57:12 fukachan Exp $
#
package Mail::Message::ToHTML;
@@ -17,7 +17,7 @@ my $debug = 0;
my $URL =
"<A HREF=\"http://www.fml.org/software/\">Mail::Message::ToHTML</A>";
-my $version = q$FML: ToHTML.pm,v 1.33 2003/01/11 15:16:35 fukachan Exp $;
+my $version = q$FML: ToHTML.pm,v 1.34 2003/01/26 05:57:12 fukachan Exp $;
if ($version =~ /,v\s+([\d\.]+)\s+/) {
$version = "$URL $1";
}
@@ -675,11 +675,11 @@ sub _print_inline_object_link
}
if ($inline && $type =~ /image/) {
- print $wh "<BR><IMG SRC=\"$file\">$desc\n";
+ print $wh "<BR><IMG SRC=\"../$file\">$desc\n";
}
else {
my $t = $file;
- print $wh "<BR><A HREF=\"$file\" TARGET=\"$t\"> $type $num </A>";
+ print $wh "<BR><A HREF=\"../$file\" TARGET=\"$t\"> $type $num </A>";
print $wh "$desc<BR>\n";
}
}