diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2020-02-17 11:56:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-17 11:56:55 +0100 |
commit | e9da164ae44fd564abd67d307714edfff38492a1 (patch) | |
tree | 0b48d20cbaf4fcd9062484c4ee134a74755fbb1d /apps | |
parent | a1fb57d2e2a6ef3774dada3c906379f3d7663817 (diff) | |
parent | 761a663667ae6a0d2bcc137b7fe0a37ba88af175 (diff) | |
download | nextcloud-server-e9da164ae44fd564abd67d307714edfff38492a1.tar.gz nextcloud-server-e9da164ae44fd564abd67d307714edfff38492a1.zip |
Merge pull request #19510 from nextcloud/bugfix/19504
Continue with next foreach iteration
Diffstat (limited to 'apps')
-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; } } } |