From ae426785932da344cd083665076f6e34d655cc8c Mon Sep 17 00:00:00 2001 From: teepe Date: Sun, 14 Apr 2002 13:53:52 +0000 Subject: [PATCH] Fixed html tables in printer_friendly_bottom.php (patch #542367), Graham Maltby git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2721 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- ChangeLog | 1 + src/printer_friendly_bottom.php | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index ff87bd49..1b4e683b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -43,6 +43,7 @@ Version 1.2.6 -- CVS - Improved the handling of IMAP [PARSE] messages to reduce retrieval error. - Fixed small bug in handeling timezone (bug #536149) - MDN message now RFC compatible (bug #537662) + - Fixed html tables in printer_friendly_bottom.php (patch #542367) Version 1.2.5 -- 22 February 2002 --------------------------------- diff --git a/src/printer_friendly_bottom.php b/src/printer_friendly_bottom.php index b5b19310..7f6a4abd 100644 --- a/src/printer_friendly_bottom.php +++ b/src/printer_friendly_bottom.php @@ -90,15 +90,15 @@ if ( empty($pf_cleandisplay) || $pf_cleandisplay != 'no' ) { displayHtmlHeader( _("Printer Friendly"), '', FALSE ); echo "\n" . - /* headers (we use table becasue translations are not all the same width) */ + /* headers (we use table because translations are not all the same width) */ ''. - '\n". - '\n"; + '\n". + '\n"; if ( strlen($cc) > 0 ) { /* only show CC: if it's there... */ - echo '\n"; + echo '\n"; } -echo '\n". - '\n". +echo '\n". + '\n". '
' . _("From") . ':' . htmlentities($from) . "
' . _("To") . ':' . htmlentities($to) . "
' . _("From") . ':' . htmlentities($from) . "
' . _("To") . ':' . htmlentities($to) . "
' . _("CC") . ':' . htmlentities($cc) . "
' . _("CC") . ':' . htmlentities($cc) . "
' . _("Date") . ':' . htmlentities($date) . "
' . _("Subject") . ':' . htmlentities($subject) . "
' . _("Date") . ':' . htmlentities($date) . "
' . _("Subject") . ':' . htmlentities($subject) . "
'. "\n"; /* body */ @@ -107,7 +107,7 @@ echo $body; /* --end browser output-- */ -echo ''; +echo ''; /* --start pf-specific functions-- */ @@ -147,4 +147,4 @@ function pf_clean_string ( $unclean_string, $num_leading_spaces ) { /* --end pf-specific functions */ -?> \ No newline at end of file +?> -- 2.25.1