X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_input.inc;h=0b59aaaac15cce9fefa937f56d37de597de0cc0a;hb=a3616fe8abf36ba9a2ba9ba63689475b1c8978b8;hp=59a3676ef5664ed7ccc7bd004411ac37c2c824aa;hpb=2bcdab793e406bb5a44d2c4e079ec7cc2a1aa857;p=fa-stable.git diff --git a/includes/ui/ui_input.inc b/includes/ui/ui_input.inc index 59a3676e..0b59aaaa 100644 --- a/includes/ui/ui_input.inc +++ b/includes/ui/ui_input.inc @@ -911,7 +911,7 @@ function small_qty_cells($label, $name, $init=null, $params=null, $post_label=nu //----------------------------------------------------------------------------------- -function textarea_cells($label, $name, $value, $cols, $rows, $title = null, $params="") +function textarea_cells($label, $name, $value, $cols, $rows, $max=255, $title = null, $params="") { global $Ajax; @@ -922,14 +922,15 @@ function textarea_cells($label, $name, $value, $cols, $rows, $title = null, $par $value = (!isset($_POST[$name]) ? "" : $_POST[$name]); echo "\n"; $Ajax->addUpdate($name, $name, $value); } -function textarea_row($label, $name, $value, $cols, $rows, $title=null, $params="") +function textarea_row($label, $name, $value, $cols, $rows, $max=255, $title=null, $params="") { echo "$label"; - textarea_cells(null, $name, $value, $cols, $rows, $title, $params); + textarea_cells(null, $name, $value, $cols, $rows, $max, $title, $params); echo "\n"; }