diff --git a/administrator/components/com_modules/forms/module.xml b/administrator/components/com_modules/forms/module.xml index c6a00dea7e40c..7207d5976e2fd 100644 --- a/administrator/components/com_modules/forms/module.xml +++ b/administrator/components/com_modules/forms/module.xml @@ -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" /> - +
+ + +
diff --git a/modules/mod_related_items/src/Dispatcher/Dispatcher.php b/modules/mod_related_items/src/Dispatcher/Dispatcher.php index e5424569329ba..84c525a2fbb20 100644 --- a/modules/mod_related_items/src/Dispatcher/Dispatcher.php +++ b/modules/mod_related_items/src/Dispatcher/Dispatcher.php @@ -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 */ diff --git a/tests/System/entrypoint.sh b/tests/System/entrypoint.sh index 631c4f0707414..e5046f630b20a 100644 --- a/tests/System/entrypoint.sh +++ b/tests/System/entrypoint.sh @@ -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 &