summaryrefslogtreecommitdiff
path: root/app/Report
diff options
context:
space:
mode:
Diffstat (limited to 'app/Report')
-rw-r--r--app/Report/ReportParserBase.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Report/ReportParserBase.php b/app/Report/ReportParserBase.php
index 735af3f767..f3d1d87395 100644
--- a/app/Report/ReportParserBase.php
+++ b/app/Report/ReportParserBase.php
@@ -83,7 +83,7 @@ class ReportParserBase
}
);
- $fp = Registry::filesystem()->root()->readStream($report);
+ $fp = fopen($report, 'rb');
while ($data = fread($fp, 4096)) {
if (!xml_parse($this->xml_parser, $data, feof($fp))) {