#2187 Addresses deprecation on PHP 8.1 in ZipArchi
This commit is contained in:
parent
aca10785cf
commit
c57c292915
|
|
@ -133,6 +133,13 @@ class ZipArchive
|
||||||
|
|
||||||
if (!$this->usePclzip) {
|
if (!$this->usePclzip) {
|
||||||
$zip = new \ZipArchive();
|
$zip = new \ZipArchive();
|
||||||
|
|
||||||
|
// PHP 8.1 compat - passing null as second arg to \ZipArchive::open() is deprecated
|
||||||
|
// passing 0 achieves the same behaviour
|
||||||
|
if ($flags === null) {
|
||||||
|
$flags = 0;
|
||||||
|
}
|
||||||
|
|
||||||
$result = $zip->open($this->filename, $flags);
|
$result = $zip->open($this->filename, $flags);
|
||||||
|
|
||||||
// Scrutizer will report the property numFiles does not exist
|
// Scrutizer will report the property numFiles does not exist
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue