|
|
@@ -55,11 +55,11 @@ class SiteController extends Controller
|
|
|
public function actionLogin()
|
|
|
{
|
|
|
if (!\Yii::$app->user->isGuest) {
|
|
|
- $this->goHome();
|
|
|
+ return $this->goHome();
|
|
|
}
|
|
|
|
|
|
$model = new LoginForm();
|
|
|
- if ($model->load($_POST) && $model->login()) {
|
|
|
+ if ($model->load(Yii::$app->request->post()) && $model->login()) {
|
|
|
return $this->goBack();
|
|
|
} else {
|
|
|
return $this->render('login', [
|
|
|
@@ -77,7 +77,7 @@ class SiteController extends Controller
|
|
|
public function actionContact()
|
|
|
{
|
|
|
$model = new ContactForm;
|
|
|
- if ($model->load($_POST) && $model->contact(Yii::$app->params['adminEmail'])) {
|
|
|
+ if ($model->load(Yii::$app->request->post()) && $model->contact(Yii::$app->params['adminEmail'])) {
|
|
|
Yii::$app->session->setFlash('contactFormSubmitted');
|
|
|
return $this->refresh();
|
|
|
} else {
|