1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

Form handler - missing optional id attribute for inputs of type hidden

This commit is contained in:
secretr
2009-01-28 14:57:27 +00:00
parent e084a82757
commit 7549e547ad

View File

@@ -9,8 +9,8 @@
* Form Handler
*
* $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $
* $Revision: 1.22 $
* $Date: 2009-01-20 22:59:39 $
* $Revision: 1.23 $
* $Date: 2009-01-28 14:57:27 $
* $Author: secretr $
*
*/
@@ -507,7 +507,7 @@ class e_form
switch ($type) {
case 'hidden':
$def_options = array('disabled' => false, 'other' => '');
$def_options = array('id' => false, 'disabled' => false, 'other' => '');
break;
case 'text':