X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fui%2Fui_input.inc;h=59a3676ef5664ed7ccc7bd004411ac37c2c824aa;hb=2bcdab793e406bb5a44d2c4e079ec7cc2a1aa857;hp=054af15e98ee463c3587ab87b11e4908de4089f1;hpb=67100a2b9c55e5ed9126bbf28aafb54d829066df;p=fa-stable.git diff --git a/includes/ui/ui_input.inc b/includes/ui/ui_input.inc index 054af15e..59a3676e 100644 --- a/includes/ui/ui_input.inc +++ b/includes/ui/ui_input.inc @@ -159,6 +159,7 @@ function submit($name, $value, $echo=true, $title=false, $atype=false, $icon=fal if ($icon===false) $icon=ICON_ESCAPE; break; case 'nonajax': + case 'download': $atype = false; } } @@ -347,7 +348,13 @@ function select_button_cell($name, $value, $title=false) function check_value($name) { - return (empty($_POST[$name]) ? 0 : 1); + if (is_array($name)) { + $ret = array(); + foreach($name as $key) + $ret[$key] = check_value($key); + return $ret; + } else + return (empty($_POST[$name]) ? 0 : 1); } function checkbox($label, $name, $value=null, $submit_on_change=false, $title=false) @@ -757,7 +764,7 @@ function ref_cells($label, $name, $title=null, $init=null, $params=null, $submit label_cell($list.""); + ."value='".@$_POST[$name]."' size=16 maxlength=35>"); } else // just wildcard ref field (e.g. for global inquires) {