From 8ab1e4fbc379d56b83f4c6d94c1f07f6024f0cf7 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 f72e42766..55e5f6fb3 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; } } }