From 7c8b4e5ca43d67e8490e473acfd2515d609b55f3 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 27 Feb 2023 16:32:42 +0100 Subject: [PATCH] wait #5755 @0.25 --- src/app/Models/User.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/Models/User.php b/src/app/Models/User.php index 6918bfd..bf3eb9b 100644 --- a/src/app/Models/User.php +++ b/src/app/Models/User.php @@ -174,13 +174,13 @@ class User extends CubistMagicAuthenticatable $name = $this->name; $res = ''; if ($name) { - $res .= ' ' . $name . '
'; + $res .= $name . '
'; } - $res .= ' ' . $this->companyName; + $res .= ' ' . $this->companyName . ''; $invoicable = Permissions::getInvoicableCompany($this->company); if ($invoicable != $this->company) { - $res .= '
' . Permissions::getCompanyName($invoicable); + $res .= '
(€ : ' . Permissions::getCompanyName($invoicable) . ')'; } //$res .= '
' . $this->getAdministratorFirstname(); return $res; -- 2.39.5