Explorar el Código

Missing $message var reference removed from mail layouts

Klimov Paul hace 11 años
padre
commit
91454779c2
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      mail/layouts/html.php

+ 1 - 2
mail/layouts/html.php

@@ -3,7 +3,6 @@ use yii\helpers\Html;
 
 /**
  * @var \yii\web\View $this
- * @var \yii\mail\MessageInterface $message
  * @var string $content
  */
 ?>
@@ -11,7 +10,7 @@ use yii\helpers\Html;
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=<?= $message->getCharset() ?>" />
+    <meta http-equiv="Content-Type" content="text/html; charset=<?= Yii::$app->charset ?>" />
     <title><?= Html::encode($this->title) ?></title>
     <?php $this->head() ?>
 </head>