Fixed minor consistency bugs in apps * Added 'return' to goHome() calls in actions * Changed $_POST to Yii::$app->request->post()
This commit is contained in:
parent
2fe23bc740
commit
0eff9fb382
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user