From ccab5f9a00beca5704238b4410d32e44c47fc69c Mon Sep 17 00:00:00 2001 From: johnnyq Date: Wed, 10 Apr 2024 15:05:37 -0400 Subject: [PATCH] Fix umlauts in settings browser title --- inc_all_client.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/inc_all_client.php b/inc_all_client.php index 9d91cb2d..3d548b6d 100644 --- a/inc_all_client.php +++ b/inc_all_client.php @@ -32,6 +32,7 @@ if (isset($_GET['client_id'])) { $row = mysqli_fetch_array($sql); $client_name = nullable_htmlentities($row['client_name']); + $client_name_title = $row['client_name']; $client_is_lead = intval($row['client_lead']); $client_type = nullable_htmlentities($row['client_type']); $client_website = nullable_htmlentities($row['client_website']); @@ -242,4 +243,5 @@ require_once "pagination_head.php"; ?> - \ No newline at end of file + + \ No newline at end of file