From 166d5bf6ab0041d1c1a86d4576590a8693ef7a84 Mon Sep 17 00:00:00 2001 From: secretr Date: Tue, 25 Aug 2009 08:41:41 +0000 Subject: [PATCH] e_form bugs --- e107_handlers/form_handler.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/e107_handlers/form_handler.php b/e107_handlers/form_handler.php index 4ff99f87f..166fd952c 100644 --- a/e107_handlers/form_handler.php +++ b/e107_handlers/form_handler.php @@ -9,9 +9,9 @@ * Form Handler * * $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $ - * $Revision: 1.39 $ - * $Date: 2009-08-15 15:53:44 $ - * $Author: marj_nl_fr $ + * $Revision: 1.40 $ + * $Date: 2009-08-25 08:41:41 $ + * $Author: secretr $ * */ @@ -183,8 +183,8 @@ class e_form function checkbox($name, $value, $checked = false, $options = array()) { - $options['checked'] = $checked; //comes as separate argument just for convenience $options = $this->format_options('checkbox', $name, $options); + $options['checked'] = $checked; //comes as separate argument just for convenience return "get_attributes($options, $name, $value)." />"; } @@ -233,8 +233,8 @@ class e_form function radio($name, $value, $checked = false, $options = array()) { - $options['checked'] = $checked; //comes as separate argument just for convenience $options = $this->format_options('radio', $name, $options); + $options['checked'] = $checked; //comes as separate argument just for convenience return "get_attributes($options, $name, $value)." />"; }