Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Steininger <11192306+codegain@users.noreply.github.com>2022-07-21 19:38:08 +0300
committerGitHub <noreply@github.com>2022-07-21 19:38:08 +0300
commit38bf246b0d1e35078558f4267791d1cd22f782f0 (patch)
treecbbb568cd980bff1ae4e19f9c65bd47b368d8faf
parent49cf2286d2c87eab0875819a63da463a590b7039 (diff)
Fix usage of "break" (#8624)
-rw-r--r--program/lib/Roundcube/rcube_imap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_imap.php b/program/lib/Roundcube/rcube_imap.php
index 3adba6abb..e12a93b77 100644
--- a/program/lib/Roundcube/rcube_imap.php
+++ b/program/lib/Roundcube/rcube_imap.php
@@ -157,7 +157,7 @@ class rcube_imap extends rcube_storage
$data = $this->plugins->exec_hook('storage_connect', array_merge($this->options, $data));
if ($attempt > 1 && !$data['retry']) {
- $break;
+ break;
}
if (!empty($data['pass'])) {