1
0
mirror of https://github.com/flarum/core.git synced 2025-10-13 16:05:05 +02:00

Fix installation regressions

This commit is contained in:
Toby Zerner
2015-10-13 15:55:18 +10:30
parent 6f7cce5adf
commit 6df48b04c2
3 changed files with 6 additions and 2 deletions

View File

@@ -42,6 +42,8 @@ class InstallServiceProvider extends AbstractServiceProvider
$this->app->singleton('flarum.install.routes', function () {
return $this->getRoutes();
});
$this->loadViewsFrom(__DIR__.'/../../views/install', 'flarum.install');
}
/**
@@ -56,7 +58,7 @@ class InstallServiceProvider extends AbstractServiceProvider
$routes->get(
'/',
'index',
$toController('Flarum\Install\Controller\IndexAction')
$toController('Flarum\Install\Controller\IndexController')
);
$routes->post(