From e3f6d4184fb2563b36fc9808b355c69366157290 Mon Sep 17 00:00:00 2001 From: Stefanos Petrakis Date: Tue, 2 Oct 2018 16:29:18 +0200 Subject: [PATCH] Fix multiple VCard field search (#6466) --- program/lib/Roundcube/rcube_contacts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/lib/Roundcube/rcube_contacts.php b/program/lib/Roundcube/rcube_contacts.php index 93c589307..a54f107f8 100644 --- a/program/lib/Roundcube/rcube_contacts.php +++ b/program/lib/Roundcube/rcube_contacts.php @@ -380,7 +380,7 @@ class rcube_contacts extends rcube_addressbook foreach ((array)$row[$col] as $value) { if ($this->compare_search_value($colname, $value, $search, $mode)) { $found[$colname] = true; - break 2; + break; } } }