diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2022-01-18 14:33:16 +0000 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2022-01-18 14:33:32 +0000 |
| commit | 6c84de1dec172caf8dac26e426396ace3bda19d4 (patch) | |
| tree | 887f6ca7128c94701c9ff4e3c360e91dc86ed737 /app/Report | |
| parent | e8092ee8fd36be7b1e7d3da7bc2a5fc49af84c4a (diff) | |
| download | webtrees-6c84de1dec172caf8dac26e426396ace3bda19d4.tar.gz webtrees-6c84de1dec172caf8dac26e426396ace3bda19d4.tar.bz2 webtrees-6c84de1dec172caf8dac26e426396ace3bda19d4.zip | |
Resources folder for modules should be an absolute URL
Diffstat (limited to 'app/Report')
| -rw-r--r-- | app/Report/ReportParserBase.php | 2 |
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))) { |
