From: Joe Hunt Date: Sun, 7 Mar 2010 09:29:38 +0000 (+0000) Subject: Bug in ui_lists.inc, systypes_list_row, too many parameters in X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=40eb428deec84083d1e2ab9d93dde6ba6f64d946;p=textcart.git Bug in ui_lists.inc, systypes_list_row, too many parameters in --- diff --git a/CHANGELOG.txt b/CHANGELOG.txt index dd78f84..0be96c2 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -19,6 +19,11 @@ Legend: ! -> Note $ -> Affected files +07-Mar-2010 Joe Hunt +# Bug in ui_lists.inc, systypes_list_row, too many parameters in + call to systypes_list_cells +$ /includes/ui/ui_lists.inc + 06-Mar-2010 Joe Hunt # Bug in Text(Col)WrapLines. Doesn't break on space. $ /reporting/includes/pdf_report.inc diff --git a/includes/ui/ui_lists.inc b/includes/ui/ui_lists.inc index bcccdef..a0f82fc 100644 --- a/includes/ui/ui_lists.inc +++ b/includes/ui/ui_lists.inc @@ -1791,7 +1791,7 @@ function systypes_list_cells($label, $name, $value=null, $submit_on_change=false function systypes_list_row($label, $name, $value=null, $submit_on_change=false) { echo "$label"; - systypes_list_cells(null, $name, $value, false, $submit_on_change); + systypes_list_cells(null, $name, $value, $submit_on_change); echo "\n"; }