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