From 7a3fe487152b10bd896bea0aae576b208e2abf12 Mon Sep 17 00:00:00 2001 From: ScuffedNewt Date: Fri, 25 Oct 2024 21:45:24 +0100 Subject: [PATCH] fix: isset for data --- app/Models/Character/CharacterTitle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Character/CharacterTitle.php b/app/Models/Character/CharacterTitle.php index 466ea85d2..1dc441091 100644 --- a/app/Models/Character/CharacterTitle.php +++ b/app/Models/Character/CharacterTitle.php @@ -190,7 +190,7 @@ public function getAssetTypeAttribute() { */ public function displayTitle($data) { return ''.$data['full'] : '>'.$this->title) + (isset($data['full']) ? ' data-toggle="tooltip" title="'.$this->title.'">'.$data['full'] : '>'.$this->title) .''; } }