1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Form handler typo

This commit is contained in:
secretr
2008-12-23 08:28:42 +00:00
parent 4eacc8a194
commit ee93e31943

View File

@@ -9,8 +9,8 @@
* Form Handler
*
* $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $
* $Revision: 1.11 $
* $Date: 2008-12-19 14:01:07 $
* $Revision: 1.12 $
* $Date: 2008-12-23 08:28:42 $
* $Author: secretr $
*
*/
@@ -82,7 +82,7 @@ class e_form
{
$options = $this->format_options('text', $name, $options);
//never allow id in format name-value for text fields
return "<input type='text' name='{$name}'".$this->get_attributes($options, $name)." />";
return "<input type='file' name='{$name}'".$this->get_attributes($options, $name)." />";
}