1
0
mirror of https://github.com/flarum/core.git synced 2025-04-30 04:27:57 +02:00

Fix installation in subdirectory

Fixes .
This commit is contained in:
Franz Liedke 2018-10-26 00:27:35 +02:00
parent 4775535421
commit a1948e7bb8
No known key found for this signature in database
GPG Key ID: 9A0231A879B055F4

@ -74,13 +74,13 @@ class InstallServiceProvider extends AbstractServiceProvider
$route = $this->app->make(RouteHandlerFactory::class);
$routes->get(
'/',
'/{path:.*}',
'index',
$route->toController(Controller\IndexController::class)
);
$routes->post(
'/',
'/{path:.*}',
'install',
$route->toController(Controller\InstallController::class)
);