summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 415fc17b2c..429a0961c8 100644
--- a/index.php
+++ b/index.php
@@ -249,7 +249,7 @@ try {
// Find the controller and action for the selected route
$controller_action = $routes[$request->getMethod() . ':' . $route] ?? 'ErrorController@noRouteFound';
list($controller_name, $action) = explode('@', $controller_action);
- $controller_class = __NAMESPACE__ . '\\Http\\Controllers\\' . $controller_name;
+ $controller_class = '\\Fisharebest\\Webtrees\\Http\\Controllers\\' . $controller_name;
// Set up dependency injection for the controllers.
$resolver = new Resolver();