New feature: display attached images as thumbnails below message body

This commit is contained in:
Thomas Bruederli
2012-11-10 21:08:14 +01:00
parent 25a86bacf6
commit 03149131f7
8 changed files with 204 additions and 17 deletions

View File

@@ -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);
}
/**