diff options
-rw-r--r-- | core/Controller/SetupController.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/Controller/SetupController.php b/core/Controller/SetupController.php index c6da7ca26f7..0f1fa1c495e 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 @@ class SetupController { ]; $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); } |