diff options
| author | 2020-09-01 12:50:28 +0200 | |
|---|---|---|
| committer | 2020-09-01 12:50:28 +0200 | |
| commit | e527afa2fa278dd344106ced9b882c1daddcc042 (patch) | |
| tree | d79598f4f9cd61c66d04aab85ec06d3a3e2ad592 | |
| parent | ca965a490df8a46343c1d50b658b8c7a690906de (diff) | |
Add variable undeclared ($url) (#3164)
* Add variable undeclared ($url)
* Update ZipException.php
* modify
| -rw-r--r-- | app/Exceptions/ZipException.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Exceptions/ZipException.php b/app/Exceptions/ZipException.php index ad01b87ea..9ed40c4cb 100644 --- a/app/Exceptions/ZipException.php +++ b/app/Exceptions/ZipException.php @@ -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; } |
