diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2020-02-19 10:01:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-19 10:01:30 +0100 |
commit | 41fd0aaa264cde537aff20f951bf75eaf23d36c0 (patch) | |
tree | 3bd258add7e3550bda26edf1ba6ed8849599893b /apps/workflowengine | |
parent | f2c3926f99eb21929d15a4895e85ed0243785ac9 (diff) | |
parent | fa43d766e8fbdba0fc1bf928625f5890806593da (diff) | |
download | nextcloud-server-41fd0aaa264cde537aff20f951bf75eaf23d36c0.tar.gz nextcloud-server-41fd0aaa264cde537aff20f951bf75eaf23d36c0.zip |
Merge pull request #19516 from nextcloud/backport/19510/stable18
[stable18] Continue with next foreach iteration
Diffstat (limited to 'apps/workflowengine')
-rw-r--r-- | apps/workflowengine/lib/Helper/LogContext.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workflowengine/lib/Helper/LogContext.php b/apps/workflowengine/lib/Helper/LogContext.php index 548e8722073..fa69cde4009 100644 --- a/apps/workflowengine/lib/Helper/LogContext.php +++ b/apps/workflowengine/lib/Helper/LogContext.php @@ -52,7 +52,7 @@ class LogContext { ]; break; default: - continue; + continue 2; } } } |