From 8fd9dff564709fb710baf828e6b18c33b0f77832 Mon Sep 17 00:00:00 2001 From: Paolo Date: Mon, 9 Feb 2026 12:06:27 +0100 Subject: [PATCH] Bugfix: include/person.class.php->getTab was not filtering the UID --- include/person.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/person.class.php b/include/person.class.php index f8103dd65..6c3e341cc 100644 --- a/include/person.class.php +++ b/include/person.class.php @@ -574,7 +574,7 @@ class person extends basis_db UPPER (vorname || ' ' || nachname) ~* UPPER(".$this->db_add_param($filter).") OR UPPER (nachname || ' ' || wahlname) ~* UPPER(".$this->db_add_param($filter).") OR UPPER (wahlname || ' ' || nachname) ~* UPPER(".$this->db_add_param($filter).") OR - uid=".$this->db_add_param($filter); + uid ~* ".$this->db_add_param($filter); } $sqlQuery .= " ORDER BY $order";