From 179aed242062f9a67fc424a9e1641e9c0d804c12 Mon Sep 17 00:00:00 2001 From: jangliss Date: Thu, 10 Nov 2005 03:51:10 +0000 Subject: [PATCH] Tweaked printer friendly attachment display. Looked a little odd squished over on the left. Removed invalid html, and set widths on the "headers". What do people think of this display? I think it needs css borders rather than the good ol' html borders. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10321 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- ChangeLog | 1 + src/printer_friendly_bottom.php | 14 +++++++------- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index b991ef26..daa9b31f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -479,6 +479,7 @@ Version 1.5.1 -- CVS than 6 (#1339211). - Allow double quote to be used in MOTD (#1276959). - Prevent right_frame to be set to '//www.example.com'. + - Tweak printer friendly attachment view. Version 1.5.0 - 2 February 2004 ------------------------------- diff --git a/src/printer_friendly_bottom.php b/src/printer_friendly_bottom.php index 1194e37a..f4a2fde2 100644 --- a/src/printer_friendly_bottom.php +++ b/src/printer_friendly_bottom.php @@ -260,13 +260,13 @@ function pf_show_attachments($message, $exclude_id, $mailbox, $id) { $display_filename = $filename; // TODO: maybe make it nicer? - $attachments .= '' . - ''. - html_tag( 'td',_("Size:"), 'right') . - html_tag( 'td',show_readable_size($header->size), 'left') . - '' . - html_tag( 'td',_("Type:"), 'right') . - html_tag( 'td',htmlspecialchars($type0).'/'.htmlspecialchars($type1), 'left') . + $attachments .= '
'.decodeHeader($display_filename).'
' . + ''. + html_tag( 'td',_("Size:"), 'right', '', 'width="25%"') . + html_tag( 'td',show_readable_size($header->size), 'left', '', 'width="75%"') . + '' . "\n" . + html_tag( 'td',_("Type:"), 'right', '', 'width="25%"') . + html_tag( 'td',htmlspecialchars($type0).'/'.htmlspecialchars($type1), 'left', '', 'width="75%"') . ''; if (! empty($description)) { $attachments .= $description; -- 2.25.1
'.decodeHeader($display_filename).'