in Yii2 advanced template after redirecting flashes doesnt work
Here is the code
public function actionTest()
{
Yii::$app->getSession()->setFlash('qwe', 'qwe');
return $this->redirect(['site/test2']);
}
public function actionTest2()
{
echo Yii::$app->getSession()->getFlash('qwe').'--++';
}
in not advanced template it works. But in advanced template doesnt work.