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

github.com/bareos/bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Bergkemper <frank.bergkemper@bareos.com>2022-11-07 15:37:34 +0300
committerPhilipp Storz <philipp.storz@bareos.com>2022-11-13 12:53:07 +0300
commitfd8e0ccf1d2036aaa26ef4af6c6d992761f6556a (patch)
tree00b267196f1cfbc8fa183a60e15f67fe76962571
parent7be0e441b0e80696d2ef476c42c817ae4f92af6c (diff)
webui: patch zf2 to eliminate a php warning caused by zend-stdlib
Use break instead of continue inside switch. See: https://github.com/zendframework/zend-stdlib/commit/d0cd1d043ba70feb503fb1015fbc94a6ca414056
-rw-r--r--webui/vendor/zendframework/zend-stdlib/src/ArrayObject.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/vendor/zendframework/zend-stdlib/src/ArrayObject.php b/webui/vendor/zendframework/zend-stdlib/src/ArrayObject.php
index e890084d0..1e93ba0f2 100644
--- a/webui/vendor/zendframework/zend-stdlib/src/ArrayObject.php
+++ b/webui/vendor/zendframework/zend-stdlib/src/ArrayObject.php
@@ -423,7 +423,7 @@ class ArrayObject implements IteratorAggregate, ArrayAccess, Serializable, Count
$this->setIteratorClass($v);
break;
case 'protectedProperties':
- continue;
+ break;
default:
$this->__set($k, $v);
}