Add variable undeclared ($url) (#3164)

* Add variable undeclared ($url)

* Update ZipException.php

* modify
This commit is contained in:
Luc SANCHEZ
2020-09-01 12:50:28 +02:00
committed by GitHub
parent ca965a490d
commit e527afa2fa

View File

@@ -4,7 +4,7 @@ class FreshRSS_Zip_Exception extends Exception {
private $zipErrorCode = 0;
public function __construct($zipErrorCode) {
parent::__construct('ZIP error! ' . $url, 2141);
parent::__construct('ZIP error!', 2141);
$this->zipErrorCode = $zipErrorCode;
}