remove spaces from password

This commit is contained in:
akosse
2020-01-24 11:04:48 +03:00
parent 3daeae0293
commit eb09f95ff8
2 changed files with 23 additions and 0 deletions

View File

@ -64,6 +64,12 @@ class UserCard extends \common\models\UserCard
}
}
public function beforeSave($insert)
{
$this->salary = str_replace(' ', '', \Yii::$app->request->post('UserCard')['salary']);
return parent::beforeSave($insert); // TODO: Change the autogenerated stub
}
public function afterSave($insert, $changedAttributes)
{
$post = \Yii::$app->request->post('UserCard');