Explorar el Código

Add variable undeclared ($url) (#3164)

* Add variable undeclared ($url)

* Update ZipException.php

* modify
Luc SANCHEZ hace 5 años
padre
commit
e527afa2fa
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
 	}