diff --git a/core/Controller/SetupController.php b/core/Controller/SetupController.php index c6da7ca26f709..0f1fa1c495e72 100644 --- a/core/Controller/SetupController.php +++ b/core/Controller/SetupController.php @@ -32,6 +32,7 @@ namespace OC\Core\Controller; use OC\Setup; +use OCP\Util; use Psr\Log\LoggerInterface; class SetupController { @@ -96,6 +97,13 @@ public function display($post): void { ]; $parameters = array_merge($defaults, $post); + Util::addStyle('server', null); + + // include common nextcloud webpack bundle + Util::addScript('core', 'common'); + Util::addScript('core', 'main'); + Util::addTranslations('core'); + \OC_Template::printGuestPage('', 'installation', $parameters); }