mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 21:24:13 -08:00
Fixed #8797 - use html_entity_decode in fullName presenter for User
This commit is contained in:
parent
820a39cc90
commit
f475bdbb2d
|
@ -301,7 +301,7 @@ class UserPresenter extends Presenter
|
|||
*/
|
||||
public function fullName()
|
||||
{
|
||||
return "{$this->first_name} {$this->last_name}";
|
||||
return html_entity_decode($this->first_name.' '.$this->last_name, ENT_QUOTES | ENT_XML1, 'UTF-8');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
{{-- Page title --}}
|
||||
@section('title')
|
||||
{{ trans('admin/users/general.view_user', ['name' => html_entity_decode($user->present()->fullName(), ENT_QUOTES | ENT_XML1, 'UTF-8')]) }}
|
||||
{{ trans('admin/users/general.view_user', ['name' => $user->present()->fullName()]) }}
|
||||
@parent
|
||||
@stop
|
||||
|
||||
|
|
Loading…
Reference in a new issue