Skip to content

Commit

Permalink
Fixed issue #16875: strong tag displayed in First and Last name colum…
Browse files Browse the repository at this point in the history
…n of Survey responses page

Dev: move to raw, need to remove tag
  • Loading branch information
Shnoulle committed Dec 4, 2020
1 parent 1b2b502 commit 18628c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/models/SurveyDynamic.php
Expand Up @@ -576,7 +576,7 @@ private function getbHaveToken()
public function getFirstNameForGrid()
{
if (is_object($this->tokens)) {
return '<strong>'.$this->tokens->firstname.'</strong>';
return $this->tokens->firstname;
}

}
Expand All @@ -587,7 +587,7 @@ public function getFirstNameForGrid()
public function getLastNameForGrid()
{
if (is_object($this->tokens)) {
return '<strong>'.$this->tokens->lastname.'</strong>';
return $this->tokens->lastname;
}
}

Expand Down

0 comments on commit 18628c1

Please sign in to comment.