Properly escape passwords in the account edit form

Addresses FS#65639.

Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Lukas Fleischer 2020-02-27 16:44:04 +01:00
parent cbab9870c1
commit 4b2102ceb2

View file

@ -157,12 +157,12 @@
<legend><?= __("If you want to change the password, enter a new password and confirm the new password by entering it again.") ?></legend> <legend><?= __("If you want to change the password, enter a new password and confirm the new password by entering it again.") ?></legend>
<p> <p>
<label for="id_passwd1"><?= __("Password") ?>:</label> <label for="id_passwd1"><?= __("Password") ?>:</label>
<input type="password" size="30" name="P" id="id_passwd1" value="<?= $P ?>" /> <input type="password" size="30" name="P" id="id_passwd1" value="<?= htmlspecialchars($P, ENT_QUOTES) ?>" />
</p> </p>
<p> <p>
<label for="id_passwd2"><?= __("Re-type password") ?>:</label> <label for="id_passwd2"><?= __("Re-type password") ?>:</label>
<input type="password" size="30" name="C" id="id_passwd2" value="<?= $C ?>" /> <input type="password" size="30" name="C" id="id_passwd2" value="<?= htmlspecialchars($C, ENT_QUOTES) ?>" />
</p> </p>
</fieldset> </fieldset>
<?php endif; ?> <?php endif; ?>