From 9cd67a0aaf90b09c40015c89e21fc2aea3dc7bf2 Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Wed, 29 May 2002 16:09:01 +0000 Subject: [PATCH] Hebrew step 2 git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2902 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/html.php | 54 +++++++++++++++++++++++++++++++++++ functions/mailbox_display.php | 8 ++++-- 2 files changed, 59 insertions(+), 3 deletions(-) create mode 100644 functions/html.php diff --git a/functions/html.php b/functions/html.php new file mode 100644 index 00000000..aeae3d81 --- /dev/null +++ b/functions/html.php @@ -0,0 +1,54 @@ +" ); + } + + +?> diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index dd0aa617..13f185a3 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -14,6 +14,7 @@ require_once('../functions/strings.php'); require_once('../functions/imap_utf7_decode_local.php'); +require_once('../functions/html.php'); /* Default value for page_selector_max. */ define('PG_SEL_MAX', 10); @@ -605,11 +606,12 @@ function displayMessageArray($imapConnection, $num_msgs, $start_msg, } echo '' - . "
" + . html_tag( 'table', '', + "bgcolor=\"$color[9]\" width=\"100%\" border=0 cellpadding=1 cellspacing=1" ) + . "
" . "" - . "
$paginator_str$msg_cnt_str
" + . html_tag( 'td', 'right' ) . "$msg_cnt_str
" . ""; /* End of message-list table */ -- 2.25.1