1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-25 15:31:41 +02:00

Checkbox alignment fix

This commit is contained in:
Cameron
2013-04-16 18:03:34 -07:00
parent 9baa5a601a
commit 750ac914a2
2 changed files with 20 additions and 8 deletions

View File

@@ -605,7 +605,7 @@ class e_form
* @param array or str
* @example $frm->datepicker('my_field',time(),'type=date');
* @example $frm->datepicker('my_field',time(),'type=datetime&inline=1');
* @example $frm->datepicker('my_field',time(),'type=date&dateformat=yy-mm-dd');
* @example $frm->datepicker('my_field',time(),'type=date&dateformat=yyyy-mm-dd');
*
* @url http://trentrichardson.com/examples/timepicker/
*/
@@ -1825,7 +1825,6 @@ class e_form
break;
case 'checkbox':
$def_options['class'] = 'checkbox';
unset($def_options['size'], $def_options['selected']);
break;