Skip to content

Commit

Permalink
Fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeks-semenov committed Jul 24, 2016
1 parent d3a68bf commit 0d50a97
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,10 @@
CHANGELOG
==============

3.0.1.7.pre
-----------------
* Fixed bug

3.0.1.6
-----------------
* Fixed admin urls
Expand Down
7 changes: 5 additions & 2 deletions controllers/AuthController.php
Expand Up @@ -51,7 +51,9 @@ public function behaviors()
'only' => ['logout', 'login'],
'rules' => [
[
'actions' => ['login'],
'actions' => [
'login',
],
'allow' => true,
'roles' => ['?'],
],
Expand Down Expand Up @@ -251,7 +253,6 @@ public function actionRegister()
'model' => $model,
]);
}

/**
* Восстановлеине пароля
* @return string|Response
Expand Down Expand Up @@ -346,4 +347,6 @@ public function actionResetPassword()

return $this->render('reset-password', (array) $rr);
}


}
1 change: 0 additions & 1 deletion models/CmsContentPropertyEnum.php
Expand Up @@ -15,7 +15,6 @@
use skeeks\cms\models\behaviors\HasStatus;
use skeeks\cms\models\behaviors\TimestampPublishedBehavior;
use skeeks\cms\relatedProperties\models\RelatedPropertyEnumModel;
use skeeks\modules\cms\user\models\User;
use Yii;
use yii\db\BaseActiveRecord;

Expand Down

0 comments on commit 0d50a97

Please sign in to comment.