kartik-v / yii2-widget-activeform

Enhanced Yii2 active-form and active-field with full bootstrap styling support (sub repo split from yii2-widgets).
http://demos.krajee.com/widget-details/active-form
Other
64 stars 35 forks source link

Always true check in ActiveField::input() method #101

Closed Archy812 closed 6 years ago

Archy812 commented 6 years ago

Hi,

Code

if ($type != 'range' || $type != 'color') {
    Html::addCssClass($options, $this->addClass);
}

uses || so it's always true, maybe there should be &&

https://github.com/kartik-v/yii2-widget-activeform/blob/master/src/ActiveField.php#L535