소스 검색

Add variable undeclared ($url) (#3164)

* Add variable undeclared ($url)

* Update ZipException.php

* modify
Luc SANCHEZ 5 년 전
부모
커밋
e527afa2fa
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Exceptions/ZipException.php

+ 1 - 1
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;
 	}