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

various handler fixes and improvements

This commit is contained in:
secretr
2009-11-26 17:14:07 +00:00
parent f78445421c
commit d61aced8d4
6 changed files with 88 additions and 63 deletions

View File

@@ -9,9 +9,9 @@
* Form Handler
*
* $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $
* $Revision: 1.91 $
* $Date: 2009-11-24 15:36:12 $
* $Author: e107coders $
* $Revision: 1.92 $
* $Date: 2009-11-26 17:14:03 $
* $Author: secretr $
*
*/
@@ -1309,7 +1309,7 @@ class e_form
case 'dropdown':
$eloptions = vartrue($parms['__options'], array());
if(is_string($eloptions)) parse_str($eloptions);
unset($parms['dropdown']);
unset($parms['__options']);
return $this->selectbox($key, $parms, $value, $eloptions);
break;