From 33f84e1c82fce03b3cb4e56bd91f23c9dd9d5232 Mon Sep 17 00:00:00 2001 From: Retro64XYZ Date: Fri, 25 Aug 2017 04:46:17 -0700 Subject: [PATCH] fix(style):Removes the float from the checkbox The float on the checkbox is not necessary. This is the only output with style hard coded. Removing the hard coded style. --- SimplePHPForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimplePHPForm.php b/SimplePHPForm.php index 9eeefaf..99cdd18 100644 --- a/SimplePHPForm.php +++ b/SimplePHPForm.php @@ -205,7 +205,7 @@ function Display($name = '') } else if($type == 'checkbox') // Check box. Never needs an error message. Will never need an error or info message. { - $output .= '
'."\n"; + $output .= '
'."\n"; if(boolval($this->input_list[$name]->data)) $output .= '\n";