Skip to content

Commit

Permalink
[BUGFIX] Fixes incorrect usage of getFileLocation() instead of getFil…
Browse files Browse the repository at this point in the history
…eInfo() (#1051)
  • Loading branch information
frank-ulrich-weber authored Oct 23, 2023
1 parent 2dfbef8 commit 199ca9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/PageViewController.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ protected function getFulltext($page)
$physicalStructureInfo = $this->document->getCurrentDocument()->physicalStructureInfo[$this->document->getCurrentDocument()->physicalStructure[$page]];
$fileId = $physicalStructureInfo['files'][$fileGrpFulltext];
if (!empty($fileId)) {
$file = $this->document->getCurrentDocument()->getFileLocation($fileId);
$file = $this->document->getCurrentDocument()->getFileInfo($fileId);
$fulltext['url'] = $file['location'];
if ($this->settings['useInternalProxy']) {
$this->configureProxyUrl($fulltext['url']);
Expand Down

0 comments on commit 199ca9b

Please sign in to comment.