Преглед изворни кода

Fixes #3358: Removed automatic CSRF meta tag generation by `View`. Added `Html::csrfMetaTags()` and its call to main layout files

Qiang Xue пре 11 година
родитељ
комит
01429aba17
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      views/layouts/main.php

+ 1 - 0
views/layouts/main.php

@@ -17,6 +17,7 @@ AppAsset::register($this);
 <head>
     <meta charset="<?= Yii::$app->charset ?>"/>
     <meta name="viewport" content="width=device-width, initial-scale=1">
+    <?= Html::csrfMetaTags() ?>
     <title><?= Html::encode($this->title) ?></title>
     <?php $this->head() ?>
 </head>