From f1496894b51d9d7f8f5efd86a0b38e9c6e351d70 Mon Sep 17 00:00:00 2001 From: Bernd Bestel Date: Fri, 6 Mar 2020 21:01:41 +0100 Subject: [PATCH] Fixed adding new chores did not work (references #479) --- controllers/ChoresController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/ChoresController.php b/controllers/ChoresController.php index e9078926..e07499d9 100644 --- a/controllers/ChoresController.php +++ b/controllers/ChoresController.php @@ -52,7 +52,7 @@ class ChoresController extends BaseController public function ChoreEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { - $usersService = getUsersService(); + $usersService = $this->getUsersService(); $users = $usersService->GetUsersAsDto(); if ($args['choreId'] == 'new')