From 40eb428deec84083d1e2ab9d93dde6ba6f64d946 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Sun, 7 Mar 2010 09:29:38 +0000 Subject: [PATCH] Bug in ui_lists.inc, systypes_list_row, too many parameters in --- CHANGELOG.txt | 5 +++++ includes/ui/ui_lists.inc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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"; } -- 2.30.2