phemellc / yii2-settings

Yii2 Settings Module
Other
151 stars 74 forks source link

Wrong Code #8

Closed serhatozles closed 9 years ago

serhatozles commented 9 years ago

models/Settings.php

in setSetting function:

if ($type === null) { $model->type = $type; } else { $model->type = gettype($value); }

This's correct;

if ($type !== null) { $model->type = $type; } else { $model->type = gettype($value); }

arisk commented 9 years ago

Thanks!