Merge pull request #3487 from Icinga/fix/web-bootstrap

Bootstrap modules at last
This commit is contained in:
Eric Lippmann 2018-06-28 11:39:12 +02:00 committed by GitHub
commit b12b905076
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -89,9 +89,6 @@ class Web extends EmbeddedWeb
->setupNotifications()
->setupResponse()
->setupZendMvc()
->setupModuleManager()
->loadSetupModuleIfNecessary()
->loadEnabledModules()
->setupRoute()
->setupPagination()
->setupUserBackendFactory()
@ -99,7 +96,10 @@ class Web extends EmbeddedWeb
->setupTimezone()
->setupLogger()
->setupInternationalization()
->setupFatalErrorHandling();
->setupFatalErrorHandling()
->setupModuleManager()
->loadSetupModuleIfNecessary()
->loadEnabledModules();
}
/**