From 03149131f754dd122f8707fbfc9e7ff47e9d6524 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli <thomas@roundcube.net> Date: Sat, 10 Nov 2012 15:08:14 -0500 Subject: [PATCH] New feature: display attached images as thumbnails below message body --- 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 880873d..0f93e96 100644 --- a/program/include/html.php +++ b/program/include/html.php @@ -252,9 +252,9 @@ * @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); } /** -- Gitblit v1.9.1