diff options
author | svncommit <devs@roundcube.net> | 2008-08-28 08:15:31 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2008-08-28 08:15:31 +0000 |
commit | f5aa16541e6901d2fc543f9044be1c898365b61e (patch) | |
tree | 3b469ffaa730a06cfb651d4ca9bb7677f720fcf3 /program/include/html.php | |
parent | 79aeb308cb195dcc48004851795e811cee6f8ca1 (diff) |
Add folder hierarchy collapsing.
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 704d10a0a..7ab82d820 100644 --- a/program/include/html.php +++ b/program/include/html.php @@ -98,7 +98,7 @@ class html if (is_string($attr)) { $attr = array('class' => $attr); } - return self::tag('div', $attr, $cont, self::$common_attrib); + return self::tag('div', $attr, $cont, array_merge(self::$common_attrib, array('onclick'))); } /** @@ -644,4 +644,4 @@ class html_table extends html } } -?>
\ No newline at end of file +?> |