diff --git a/whups/lib/Whups.php b/whups/lib/Whups.php index de5bd329da2..0d2b305501f 100644 --- a/whups/lib/Whups.php +++ b/whups/lib/Whups.php @@ -1131,8 +1131,10 @@ static public function fieldTypes() $classes = get_declared_classes(); /* Filter for the Horde_Form_Type classes. */ - $blacklist = array('invalid', 'addresslink', 'spacer', 'description', - 'captcha', 'figlet', 'header'); + $blacklist = array( + 'addresslink', 'captcha', 'description', 'figlet', 'header', + 'image', 'invalid', 'spacer' + ); foreach ($classes as $class) { if (stripos($class, 'horde_form_type_') !== false) { $field_type = substr($class, 16);