Merge pull request #3645 from Icinga/feature/zf1-php73
vendor: Update zf1 for PHP 7.3
This commit is contained in:
commit
5f52871b61
|
@ -1159,7 +1159,7 @@ class Zend_Form implements Iterator, Countable, Zend_Validate_Interface
|
|||
} else {
|
||||
switch ($argc) {
|
||||
case 0:
|
||||
continue;
|
||||
continue 2;
|
||||
case (1 <= $argc):
|
||||
$type = array_shift($spec);
|
||||
case (2 <= $argc):
|
||||
|
@ -1664,7 +1664,7 @@ class Zend_Form implements Iterator, Countable, Zend_Validate_Interface
|
|||
*/
|
||||
public function addSubForms(array $subForms)
|
||||
{
|
||||
foreach ($subForms as $key => $spec) {
|
||||
foreach ($subForms as $key => $spec) {
|
||||
$name = (string) $key;
|
||||
if ($spec instanceof Zend_Form) {
|
||||
$this->addSubForm($spec, $name);
|
||||
|
@ -1676,7 +1676,7 @@ class Zend_Form implements Iterator, Countable, Zend_Validate_Interface
|
|||
$order = null;
|
||||
switch ($argc) {
|
||||
case 0:
|
||||
continue;
|
||||
continue 2;
|
||||
case (1 <= $argc):
|
||||
$subForm = array_shift($spec);
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# icingaweb2-vendor-zf1
|
||||
|
||||
icingaweb2-vendor-zf1 is [Icinga Web 2](https://icinga.com/products/icinga-web-2/)'s fork of
|
||||
icingaweb2-vendor-zf1 is [Icinga Web 2](https://www.icinga.org/products/icinga-web-2/)'s fork of
|
||||
[Zend Framework](https://framework.zend.com/) 1 which is
|
||||
[end-of-life](https://framework.zend.com/blog/2016-06-28-zf1-eol.html) since Sep 28, 2016.
|
||||
We've reduced the library to the minimum required by Icinga Web 2 and its modules.
|
||||
|
|
|
@ -1 +1 @@
|
|||
v1.12.20
|
||||
v1.12.20-23-gc1f645550
|
||||
|
|
Loading…
Reference in New Issue