alecpl
2008-07-18 18240a9201d193a5a2420f8644fa05b7bfbceeec
program/js/tiny_mce/plugins/table/js/table.js
@@ -46,13 +46,13 @@
   // Validate table size
   if (colLimit && cols > colLimit) {
      alert(inst.getLang('table_col_limit', '', true, {cols : colLimit}));
      inst.windowManager.alert(inst.getLang('table_dlg.col_limit').replace(/\{\$cols\}/g, colLimit));
      return false;
   } else if (rowLimit && rows > rowLimit) {
      alert(inst.getLang('table_row_limit', '', true, {rows : rowLimit}));
      inst.windowManager.alert(inst.getLang('table_dlg.row_limit').replace(/\{\$rows\}/g, rowLimit));
      return false;
   } else if (cellLimit && cols * rows > cellLimit) {
      alert(inst.getLang('table_cell_limit', '', true, {cells : cellLimit}));
      inst.windowManager.alert(inst.getLang('table_dlg.cell_limit').replace(/\{\$cells\}/g, cellLimit));
      return false;
   }