From 18628c10778def690ca9812d666745718fdb7b81 Mon Sep 17 00:00:00 2001 From: Denis Chenu Date: Fri, 4 Dec 2020 08:28:39 +0100 Subject: [PATCH] Fixed issue #16875: strong tag displayed in First and Last name column of Survey responses page Dev: move to raw, need to remove tag --- application/models/SurveyDynamic.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/models/SurveyDynamic.php b/application/models/SurveyDynamic.php index d3cd247b656..686f178b347 100644 --- a/application/models/SurveyDynamic.php +++ b/application/models/SurveyDynamic.php @@ -576,7 +576,7 @@ private function getbHaveToken() public function getFirstNameForGrid() { if (is_object($this->tokens)) { - return ''.$this->tokens->firstname.''; + return $this->tokens->firstname; } } @@ -587,7 +587,7 @@ public function getFirstNameForGrid() public function getLastNameForGrid() { if (is_object($this->tokens)) { - return ''.$this->tokens->lastname.''; + return $this->tokens->lastname; } }