diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-11-10 21:08:14 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-11-10 21:08:14 +0100 |
commit | 03149131f754dd122f8707fbfc9e7ff47e9d6524 (patch) | |
tree | 0bd2d3ea9d6582a5b7b460b9c620234e294b52d9 /program/include/html.php | |
parent | 25a86bacf6b5ed30b78d33ad656c48458876e102 (diff) |
New feature: display attached images as thumbnails below message body
Diffstat (limited to 'program/include/html.php')
-rw-r--r-- | program/include/html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/html.php b/program/include/html.php index 880873ddc..0f93e969d 100644 --- a/program/include/html.php +++ b/program/include/html.php @@ -252,9 +252,9 @@ class html * @return string HTML code * @see html::tag() */ - public static function br() + public static function br($attrib = array()) { - return self::tag('br'); + return self::tag('br', $attrib); } /** |