From 34d86c164803e4a83f20d79e294a061997ad3546 Mon Sep 17 00:00:00 2001 From: dahanc Date: Fri, 25 Jan 2002 06:21:21 +0000 Subject: [PATCH] Netscape 4.x tries to honor the tag on the middle column and will squeeze the "EDIT | DEL" column on the right such that it gets truncated if the text is too wide (e.g., Finnish). TD's WIDTH attribute is deprecated in HTML 4.x, and it seems that Netscape 6.x and IE 6.0 mostly ignore it, which is why the problem doesn't show up in those browsers. With this change, the table formats properly for me in Netscape 4.08, Mozilla 0.9.7+, and IE 6.0. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2231 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- plugins/calendar/day.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/calendar/day.php b/plugins/calendar/day.php index 3755ba07..d0d72f65 100644 --- a/plugins/calendar/day.php +++ b/plugins/calendar/day.php @@ -27,9 +27,9 @@ function day_header() { echo " " . " \n" . - " \n" . - " \n" . " \n"; @@ -74,7 +74,7 @@ function display_events() { $eminute = substr($calfoo[key],2,2); if (!is_array($calfoo[value])){ echo " \n" . - " \n" . + " \n" . " \n"; } else { @@ -85,7 +85,7 @@ function display_events() { $elength=''; } echo " \n" . - " \n" . "
< ". + "
< ". date_intl('D',$prev_date)."" . + " " . date_intl( 'l, F d Y', mktime(0, 0, 0, $month, $day, $year)) . "". date_intl('D',$next_date)." >
$ehour:$eminute  ". _("ADD") . "
$ehour:$eminute$elength["; + " ["; echo ($calbar[priority]==1) ? "$calbar[title]" : "$calbar[title]"; echo"] $calbar[message] \n" . @@ -132,4 +132,4 @@ initialize_events(); display_events(); ?>
- \ No newline at end of file + -- 2.25.1