Skip to content

Commit 3e8cbea

Browse files
authored
Merge pull request joomla#45632 from richard67/5.4-dev-upmerge-2025-06-20
[5.4] Upmerge 2025-06-20
2 parents e55389d + 5fef50e commit 3e8cbea

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

administrator/components/com_modules/forms/module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
label="COM_MODULES_FIELD_CONTENT_LABEL"
114114
buttons="true"
115115
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
116-
hide="readmore,pagebreak,module"
116+
hide="readmore,pagebreak,module,fields"
117117
/>
118118

119119
<field

components/com_config/forms/modules.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
label="COM_MODULES_FIELD_CONTENT_LABEL"
119119
buttons="true"
120120
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
121-
hide="readmore,pagebreak"
121+
hide="readmore,pagebreak,module,fields"
122122
/>
123123

124124
<field

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
*/

tests/System/entrypoint.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ chown -R www-data /tests/www/$TEST_GROUP/
2121
# Required for media manager tests
2222
chmod -R 777 /tests/www/$TEST_GROUP/images
2323

24+
# Disable opcache for configuration.php, otherwise there are issues when the config is changed in a test
25+
echo "/tests/www/$TEST_GROUP/configuration.php" > /tmp/blacklist.ini
26+
echo "opcache.blacklist_filename=/tmp/blacklist.ini" >> /etc/php/*/apache2/conf.d/10-opcache.ini
27+
2428
echo "[RUNNER] Start Apache"
2529
a2enmod rewrite
2630
apache2ctl -D FOREGROUND &

0 commit comments

Comments
 (0)