Issues (10)

src/text/new_password.php (1 issue)

1
<?php
2
3
/**
4
 * @var string $password
5
 */
6
?>
7
8
<?= \Yii::t('mail.views.user', 'Hello') . ',' ?>
9
<?= \Yii::t('mail.views.user', 'Your account on {0} has a new password.', [\Yii::$app->name]) ?>
10
<?= \Yii::t('mail.views.user', 'We have generated a password for you: ') ?>
11
12
<?= '<b>' . $password . '</b>' ?>
13
14
<? \Yii::t('mail.views.user', 'If you did not make this request you can ignore this email.');
0 ignored issues
show
Security Best Practice introduced by
It is not recommended to use PHP's short opening tag <?, better use <?php, or <?= in case of outputting.

Short opening tags are disabled in PHP?s default configuration. In such a case, all content of this file is output verbatim to the browser without being parsed, or executed.

As a precaution to avoid these problems better use the long opening tag <?php.

Loading history...
15