From cb70a57b781217c61f3b385df53fe50f48a0d046 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 11 Nov 2021 09:10:34 +0100 Subject: [PATCH] quieten permanent log of search links for non-ascii project-names etc. --- api/src/Link/Storage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Link/Storage.php b/api/src/Link/Storage.php index bdac0f380e..ee64ef8317 100644 --- a/api/src/Link/Storage.php +++ b/api/src/Link/Storage.php @@ -171,7 +171,7 @@ class Storage // catch Illegal mix of collations (ascii_general_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '=' (1267) // caused by non-ascii chars compared with ascii field uid catch(Api\Db\Exception $e) { - _egw_log_exception($e); + //_egw_log_exception($e); } return is_array($id) ? $links : ($links[$id] ?? []); }