Skip to content

Commit

Permalink
[TASK] Ignore extension scanner false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
fnagel committed Mar 26, 2024
1 parent 0f1e60f commit e5c7a27
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ protected function renderHeader(): string
$this->data['uid'] => 'edit',
],
],
'returnUrl' => $GLOBALS['TYPO3_REQUEST']->getAttribute('normalizedParams')->getRequestUri() . '#element-tt_content-' . $this->data['uid'],
// @extensionScannerIgnoreLine
'returnUrl' => $GLOBALS['TYPO3_REQUEST']->getAttribute('normalizedParams')->getRequestUri()
.'#element-tt_content-'.$this->data['uid'],
];
$uriBuilder = GeneralUtility::makeInstance(UriBuilder::class);
$url = (string)$uriBuilder->buildUriFromRoute('record_edit', $urlParameters);
Expand Down

0 comments on commit e5c7a27

Please sign in to comment.