From 4eebd97b4633e532d224168cfa473185bbbf5421 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Wed, 14 Oct 2015 17:03:29 +1030 Subject: [PATCH] Fix default forum route controller --- framework/core/src/Event/ConfigureForumRoutes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Event/ConfigureForumRoutes.php b/framework/core/src/Event/ConfigureForumRoutes.php index 49f65665d..a9cd88fc6 100644 --- a/framework/core/src/Event/ConfigureForumRoutes.php +++ b/framework/core/src/Event/ConfigureForumRoutes.php @@ -20,7 +20,7 @@ class ConfigureForumRoutes extends AbstractConfigureRoutes /** * {@inheritdoc} */ - public function get($url, $name, $handler = 'Flarum\Forum\Action\ClientAction') + public function get($url, $name, $handler = 'Flarum\Forum\Controller\ClientController') { parent::get($url, $name, $handler); }