Skip to content

Commit

Permalink
Fixes a typo found by scrutinizer (lastPhysicalPageSearch instead of
Browse files Browse the repository at this point in the history
lastSearchedPhysicalPage)
  • Loading branch information
frank-ulrich-weber committed Dec 20, 2017
1 parent b34a1c7 commit dff594e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlf/common/class.tx_dlf_document.php
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ public function getMetadata($id, $cPid = 0) {
*/
public function getPhysicalPage($logicalPage) {

if(!empty( $this->lastSearchedPhysicalPage['logicalPage']) && $this->lastPhysicalPageSearch['logicalPage'] == $logicalPage) {
if(!empty( $this->lastSearchedPhysicalPage['logicalPage']) && $this->lastSearchedPhysicalPage['logicalPage'] == $logicalPage) {

return $this->lastSearchedPhysicalPage['physicalPage'];

Expand Down

0 comments on commit dff594e

Please sign in to comment.