Skip to content

Commit 4d41d6f

Browse files
authored
Merge branch '5.3-dev' into ghactions
2 parents 3d8ad0e + 5732560 commit 4d41d6f

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

modules/mod_login/tmpl/default.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,13 @@
6060
</div>
6161
<?php else : ?>
6262
<label for="modlgn-passwd-<?php echo $module->id; ?>"><?php echo Text::_('JGLOBAL_PASSWORD'); ?></label>
63-
<input id="modlgn-passwd-<?php echo $module->id; ?>" type="password" name="password" autocomplete="current-password" class="form-control" placeholder="<?php echo Text::_('JGLOBAL_PASSWORD'); ?>">
63+
<div class="input-group">
64+
<input id="modlgn-passwd-<?php echo $module->id; ?>" type="password" name="password" autocomplete="current-password" class="form-control" placeholder="<?php echo Text::_('JGLOBAL_PASSWORD'); ?>">
65+
<button type="button" class="btn btn-secondary input-password-toggle">
66+
<span class="icon-eye icon-fw" aria-hidden="true"></span>
67+
<span class="visually-hidden"><?php echo Text::_('JSHOWPASSWORD'); ?></span>
68+
</button>
69+
</div>
6470
<?php endif; ?>
6571
</div>
6672

modules/mod_related_items/src/Dispatcher/Dispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// phpcs:enable PSR1.Files.SideEffects
2121

2222
/**
23-
* Dispatcher class for mod_articles_popular
23+
* Dispatcher class for mod_articles_related_items
2424
*
2525
* @since 4.4.0
2626
*/

0 commit comments

Comments
 (0)