diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-05-03 11:38:52 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-05-03 11:38:52 +0200 |
commit | 517dae3e74e39aceabaf2c5da330849a21e82d81 (patch) | |
tree | 6fe7a07764fb7523bc0bd01551f59d159e0e5d5d /program/include/rcmail.php | |
parent | b92ec5c86d2f85c43705ada6fbcb8912f48907f0 (diff) |
Experimental: refactored list.js and html_table class to render lists with different html structures (e.g. table, ul, div). This show provide more flexibility to skin designers and improve mobile device support
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 7acb3490d..6257f4925 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -1167,7 +1167,7 @@ class rcmail extends rcube */ public function table_output($attrib, $table_data, $a_show_cols, $id_col) { - $table = new html_table(/*array('cols' => count($a_show_cols))*/); + $table = new html_table($attrib); // add table header if (!$attrib['noheader']) { |