diff options
author | alecpl <alec@alec.pl> | 2008-10-10 09:02:57 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-10-10 09:02:57 +0000 |
commit | 8e83075d7ec49cd8f388039e5ae821f00173411b (patch) | |
tree | 5d8a8819d931266acf6ec540f1395ecbc8460fda /program | |
parent | 4a509a5b7c6b4b88e1db5f55dc52ca440dd96cab (diff) |
- don't set border=0 for image buttons
Diffstat (limited to 'program')
-rwxr-xr-x | program/include/rcube_template.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index 2108ed7ee..c00b10ecc 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -736,10 +736,6 @@ class rcube_template extends rcube_html_page $attrib = $sa_buttons[$command]; } - // set border to 0 because of the link arround the button - if ($attrib['type']=='image' && !isset($attrib['border'])) { - $attrib['border'] = 0; - } if (!$attrib['id']) { $attrib['id'] = sprintf('rcmbtn%d', $s_button_count++); } |