From d3c4749fafa36e7bb45c3e9dba1efe2294e5cf7f Mon Sep 17 00:00:00 2001
From: tokul
Date: Sun, 31 Jul 2005 12:42:56 +0000
Subject: [PATCH] display list of attachments on printer friendly page.
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9851 7612ce4b-ef26-0410-bec9-ea0150e637f0
---
src/printer_friendly_bottom.php | 99 ++++++++++++++++++++++++++++++++-
1 file changed, 96 insertions(+), 3 deletions(-)
diff --git a/src/printer_friendly_bottom.php b/src/printer_friendly_bottom.php
index db37b09a..1d681ed1 100644
--- a/src/printer_friendly_bottom.php
+++ b/src/printer_friendly_bottom.php
@@ -82,7 +82,7 @@ if ($ent_ar[0] != '') {
$num_leading_spaces = 9; // nine leading spaces for indentation
-// sometimes I see ',,' instead of ',' seperating addresses *shrug*
+// sometimes I see ',,' instead of ',' separating addresses *shrug*
$cc = pf_clean_string(str_replace(',,', ',', $cc), $num_leading_spaces);
$to = pf_clean_string(str_replace(',,', ',', $to), $num_leading_spaces);
@@ -98,6 +98,8 @@ $cc = decodeHeader($cc);
$from = decodeHeader($from);
$subject = decodeHeader($subject);
+$attachments = pf_show_attachments($message,$ent_ar,$mailbox,$passed_id);
+
// --end display setup--
@@ -132,9 +134,24 @@ echo '
' . "\n" . $body, 'left', '', 'colspan="2"' )
- ) . "\n" .
+ ) . "\n" ;
+
+ if (! empty($attachments)) {
+ // attachments title
+ echo html_tag( 'tr',
+ html_tag( 'td',''._("Attachments:").'', 'left', '', 'colspan="2"' )
+ ) . "\n" ;
+ // list of attachments
+ echo html_tag( 'tr',
+ html_tag( 'td',$attachments, 'left', '', 'colspan="2"' )
+ ) . "\n" ;
+ // add separator line
+ echo html_tag( 'tr',
+ html_tag( 'td', '
', 'left', '', 'colspan="2"' )
+ ) . "\n" ;
+ }
- '' . "\n" .
+ echo '' . "\n" .
'