diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-12 12:12:03 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-12 12:12:03 +0200 |
commit | 5fbe836c8ba84e69667c49cd8469ec097f838567 (patch) | |
tree | 4cdddcbe4723a51872e08231f438ea0a4efd8d0b /template/admin/html/auth.php | |
parent | 7930ae84f8d3e6e8893ebdf1b0177203ee8c8b6d (diff) | |
download | blog-5fbe836c8ba84e69667c49cd8469ec097f838567.tar.gz blog-5fbe836c8ba84e69667c49cd8469ec097f838567.tar.xz blog-5fbe836c8ba84e69667c49cd8469ec097f838567.zip |
Inconsistency in array keys for the admin language fixed (they are usually lowercase but only the keys for the labels were uppercase).
Diffstat (limited to 'template/admin/html/auth.php')
-rw-r--r-- | template/admin/html/auth.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/admin/html/auth.php b/template/admin/html/auth.php index bb12053..f2b4cca 100644 --- a/template/admin/html/auth.php +++ b/template/admin/html/auth.php @@ -13,14 +13,14 @@ <section class="flex"> <section> <div class="form-icon-flex"><i class="fa fa-user-secret"></i></div> - <div class="form-label-flex"><label for="L_USERNAME"><?=$Language->template('LABEL_USERNAME')?></label></div> + <div class="form-label-flex"><label for="L_USERNAME"><?=$Language->template('label_username')?></label></div> <div class="form-field-flex"><input id="L_USERNAME" name="username" value="<?=escapeHTML($FORM['DATA']['USERNAME'])?>" /></div> </section> </section> <section class="flex"> <section> <div class="form-icon-flex"><i class="fa fa-key"></i></div> - <div class="form-label-flex"><label for="L_PASSWORD"><?=$Language->template('LABEL_PASSWORD')?></label></div> + <div class="form-label-flex"><label for="L_PASSWORD"><?=$Language->template('label_password')?></label></div> <div class="form-field-flex"><input type="password" id="L_PASSWORD" name="password" /></div> </section> </section> |