Skip to content
Snippets Groups Projects
Commit c9ee0f52 authored by Georg Ringer's avatar Georg Ringer Committed by Benni Mack
Browse files

[BUGFIX] Use correct argument name in PageViewHelper

Fix a variable name which has been changed with the latest
refactoring to make it possible again to set links without
a cHash.

Resolves: #83063
Releases: master
Change-Id: I684d42f85a94179f19dabef5df47f09ce6b34df8
Reviewed-on: https://review.typo3.org/54719


Reviewed-by: default avatarAndreas Fernandez <typo3@scripting-base.de>
Tested-by: default avatarAndreas Fernandez <typo3@scripting-base.de>
Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarBenni Mack <benni@typo3.org>
parent 066e8ad7
Branches
Tags
No related merge requests found
...@@ -80,7 +80,7 @@ class PageViewHelper extends \TYPO3\CMS\Fluid\Core\ViewHelper\AbstractTagBasedVi ...@@ -80,7 +80,7 @@ class PageViewHelper extends \TYPO3\CMS\Fluid\Core\ViewHelper\AbstractTagBasedVi
$pageUid = (int)$this->arguments['pageUid'] ?: null; $pageUid = (int)$this->arguments['pageUid'] ?: null;
$pageType = (int)$this->arguments['pageType']; $pageType = (int)$this->arguments['pageType'];
$noCache = (bool)$this->arguments['noCache']; $noCache = (bool)$this->arguments['noCache'];
$noCacheHash = (bool)$this->arguments['useCacheHash']; $noCacheHash = (bool)$this->arguments['noCacheHash'];
$section = (string)$this->arguments['section']; $section = (string)$this->arguments['section'];
$linkAccessRestrictedPages = (bool)$this->arguments['linkAccessRestrictedPages']; $linkAccessRestrictedPages = (bool)$this->arguments['linkAccessRestrictedPages'];
$additionalParams = (array)$this->arguments['additionalParams']; $additionalParams = (array)$this->arguments['additionalParams'];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment