From f941980602757b4e1f94768ea6451dc711d3d316 Mon Sep 17 00:00:00 2001 From: Miguel N Date: Fri, 29 Jan 2021 16:57:57 +0000 Subject: [PATCH] % to $ --- app/Http/Controllers/ApplicationController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/ApplicationController.php b/app/Http/Controllers/ApplicationController.php index 0641dd4..27932f9 100755 --- a/app/Http/Controllers/ApplicationController.php +++ b/app/Http/Controllers/ApplicationController.php @@ -79,7 +79,7 @@ class ApplicationController extends Controller [ 'application' => $application, 'comments' => $application->comments, - 'structuredResponses' => %this->processOSLinebreaks(json_decode($application->response->responseData, true)), + 'structuredResponses' => $this->processOSLinebreaks(json_decode($application->response->responseData, true)), 'formStructure' => $application->response->form, 'vacancy' => $application->response->vacancy, 'canVote' => $this->canVote($application->votes),