diff options
author | alecpl <alec@alec.pl> | 2008-10-09 11:14:56 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-10-09 11:14:56 +0000 |
commit | 70087c52bc89879b8b42c422392aecf3976bbb08 (patch) | |
tree | 6081c8eaab84ab71c9bbb23acd04a2408cf6c7ff /program/steps/mail | |
parent | c47ff42c4a96502a8343683aeaa74f0794c774cd (diff) |
- don't set border=0 for images (use css for that)
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/compose.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/func.inc | 2 | ||||
-rw-r--r-- | program/steps/mail/upload.inc | 1 |
3 files changed, 1 insertions, 4 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index d6656ea24..ba09fe831 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -720,7 +720,7 @@ function rcmail_compose_attachment_list($attrib) $button = html::img(array( 'src' => $CONFIG['skin_path'] . $attrib['deleteicon'], 'alt' => rcube_label('delete'), - 'style' => "border:0;padding-right:2px;vertical-align:middle")); + 'style' => "padding-right:2px;vertical-align:middle")); else $button = Q(rcube_label('delete')); diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 21014fdb1..85a92cfc4 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -286,7 +286,6 @@ function rcmail_message_list($attrib) // complete message table $out .= "</tbody></table>\n"; - $message_count = $IMAP->messagecount(); // set client env @@ -1023,7 +1022,6 @@ function rcmail_address_string($input, $max=null, $linked=false, $addicon=null) html::img(array( 'src' => $CONFIG['skin_path'] . $addicon, 'alt' => "Add contact", - 'border' => 0, ))); } } diff --git a/program/steps/mail/upload.inc b/program/steps/mail/upload.inc index a519ddbe6..4a59b8b52 100644 --- a/program/steps/mail/upload.inc +++ b/program/steps/mail/upload.inc @@ -50,7 +50,6 @@ if (is_array($_FILES['_attachments']['tmp_name'])) { if (is_file($icon = $CONFIG['skin_path'] . '/images/icons/remove-attachment.png')) { $button = html::img(array( 'src' => $icon, - 'border' => 0, 'alt' => rcube_label('delete'), 'style' => "padding-right:2px;vertical-align:middle", )); |