From be548a3e3171167f9e260365684c6aabc8762271 Mon Sep 17 00:00:00 2001 From: Erik Amaru Ortiz Date: Fri, 19 Aug 2011 12:23:11 -0400 Subject: [PATCH] BUG 7422 Checkbox value was not saved SOLVED (review fix issues) --- gulliver/system/class.form.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulliver/system/class.form.php b/gulliver/system/class.form.php index d656c29c0..683632f1a 100644 --- a/gulliver/system/class.form.php +++ b/gulliver/system/class.form.php @@ -518,7 +518,7 @@ class Form extends XmlForm return count($notPassedFields) > 0 ? $notPassedFields : false; } - function validateFields($dataFields) { + function validateFields($data) { $values = array(); $excludeTypes = array('submit', 'file'); @@ -533,5 +533,5 @@ class Form extends XmlForm } } return $data; - } + } } \ No newline at end of file