Remove H3 BC code
authorMichael M Slusarz <slusarz@curecanti.org>
Tue, 23 Nov 2010 18:19:36 +0000 (11:19 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Tue, 23 Nov 2010 18:35:49 +0000 (11:35 -0700)
framework/Core/lib/Horde/Config/Form.php

index 5592001..36e4dc9 100644 (file)
@@ -112,11 +112,7 @@ class Horde_Config_Form extends Horde_Form
                 $required = (isset($configitem['required'])) ? $configitem['required'] : true;
                 $type = $configitem['_type'];
 
-                // FIXME: multienum fields can well be required, meaning that
-                // you need to select at least one entry. Changing this before
-                // Horde 4.0 would break a lot of configuration files though.
-                if ($type == 'multienum' || $type == 'header' ||
-                    $type == 'description') {
+                if (($type == 'header') || ($type == 'description')) {
                     $required = false;
                 }