Warning: session_start(): open(/var/lib/php/sessions/sess_d8a8qlb4m4fvdkvor69hv1vfl2, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51

Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static JTable showTableWithImages(final L cols, final L data) { ret showTableWithImages(autoTitle(), cols, data); } static JTable showTableWithImages(final S title, final L cols, final L data) { ret showTableWithImages(title, cols, data, null); } static JTable showTableWithImages(final S title, final L cols, final L data, final JTable _table) { ret (JTable) swingAndWait(func { JTable table = _table != null ? _table : sexyTable(); fillTableWithData(table, data, cols); if (_table == null) table.setRowHeight(100); showFrame(title, table); ret table; }); }