diff --git a/framework/helpers/BaseHtml.php b/framework/helpers/BaseHtml.php index 4de696d..9e1d74c 100644 --- a/framework/helpers/BaseHtml.php +++ b/framework/helpers/BaseHtml.php @@ -1222,6 +1222,9 @@ class BaseHtml */ public static function activeDropDownList($model, $attribute, $items, $options = []) { + if (!empty($options['multiple'])) { + return static::activeListBox($model, $attribute, $items, $options); + } $name = isset($options['name']) ? $options['name'] : static::getInputName($model, $attribute); $selection = static::getAttributeValue($model, $attribute); if (!array_key_exists('id', $options)) {