Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion administrator/components/com_modules/forms/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
label="COM_MODULES_FIELD_CONTENT_LABEL"
buttons="true"
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
hide="readmore,pagebreak,module"
hide="readmore,pagebreak,module,fields"
/>

<field
Expand Down
2 changes: 1 addition & 1 deletion components/com_config/forms/modules.xml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
label="COM_MODULES_FIELD_CONTENT_LABEL"
buttons="true"
filter="\Joomla\CMS\Component\ComponentHelper::filterText"
hide="readmore,pagebreak"
hide="readmore,pagebreak,module,fields"
/>

<field
Expand Down
8 changes: 7 additions & 1 deletion modules/mod_login/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,13 @@
</div>
<?php else : ?>
<label for="modlgn-passwd-<?php echo $module->id; ?>"><?php echo Text::_('JGLOBAL_PASSWORD'); ?></label>
<input id="modlgn-passwd-<?php echo $module->id; ?>" type="password" name="password" autocomplete="current-password" class="form-control" placeholder="<?php echo Text::_('JGLOBAL_PASSWORD'); ?>">
<div class="input-group">
<input id="modlgn-passwd-<?php echo $module->id; ?>" type="password" name="password" autocomplete="current-password" class="form-control" placeholder="<?php echo Text::_('JGLOBAL_PASSWORD'); ?>">
<button type="button" class="btn btn-secondary input-password-toggle">
<span class="icon-eye icon-fw" aria-hidden="true"></span>
<span class="visually-hidden"><?php echo Text::_('JSHOWPASSWORD'); ?></span>
</button>
</div>
<?php endif; ?>
</div>

Expand Down
2 changes: 1 addition & 1 deletion modules/mod_related_items/src/Dispatcher/Dispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// phpcs:enable PSR1.Files.SideEffects

/**
* Dispatcher class for mod_articles_popular
* Dispatcher class for mod_articles_related_items
*
* @since 4.4.0
*/
Expand Down
4 changes: 4 additions & 0 deletions tests/System/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ chown -R www-data /tests/www/$TEST_GROUP/
# Required for media manager tests
chmod -R 777 /tests/www/$TEST_GROUP/images

# Disable opcache for configuration.php, otherwise there are issues when the config is changed in a test
echo "/tests/www/$TEST_GROUP/configuration.php" > /tmp/blacklist.ini
echo "opcache.blacklist_filename=/tmp/blacklist.ini" >> /etc/php/*/apache2/conf.d/10-opcache.ini

echo "[RUNNER] Start Apache"
a2enmod rewrite
apache2ctl -D FOREGROUND &
Expand Down