Skip to content
Snippets Groups Projects
Commit 8c02f822 authored by Michael Hamann's avatar Michael Hamann
Browse files

Ignore warnings in the constructor of SimplePie_File

This ignores warnings because of the (intentionally) missing url
parameter for the constructor of SimplePie_File.
parent c949174a
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ class FeedParser_File extends SimplePie_File {
*/
function FeedParser_File($url, $timeout=10, $redirects=5,
$headers=null, $useragent=null, $force_fsockopen=false) {
parent::__construct();
@parent::__construct();
$this->http = new DokuHTTPClient();
$this->success = $this->http->sendRequest($url);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment