Bug in ui_lists.inc, systypes_list_row, too many parameters in
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Sun, 7 Mar 2010 09:29:38 +0000 (09:29 +0000)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Sun, 7 Mar 2010 09:29:38 +0000 (09:29 +0000)
CHANGELOG.txt
includes/ui/ui_lists.inc

index dd78f84ff8098d9dcd95081c055c50fe04a83714..0be96c26967c856ab37882d6028885cf0789418c 100644 (file)
@@ -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
index bcccdefb94560fd8e30b5e69baa0f11473cbc00c..a0f82fcf06674ecd18dd758443c0beeb19e85b3e 100644 (file)
@@ -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 "<tr><td class='label'>$label</td>";
-       systypes_list_cells(null, $name, $value, false, $submit_on_change);
+       systypes_list_cells(null, $name, $value, $submit_on_change);
        echo "</tr>\n";
 }