diff --git a/typo3/sysext/info/Classes/Controller/TranslationStatusController.php b/typo3/sysext/info/Classes/Controller/TranslationStatusController.php
index 02e8c525d20ff11f38b21c546b7ecdc68983e2e0..4ad82f2cef3d666346e45176b4ac45265989f727 100644
--- a/typo3/sysext/info/Classes/Controller/TranslationStatusController.php
+++ b/typo3/sysext/info/Classes/Controller/TranslationStatusController.php
@@ -153,7 +153,7 @@ class TranslationStatusController extends \TYPO3\CMS\Backend\Module\AbstractFunc
             // DEFAULT language:
             // "View page" link is created:
             $viewPageLink = '<a href="#" onclick="' . htmlspecialchars(BackendUtility::viewOnClick(
-                    $data['row']['uid'], '', '', '', '', '&L=###LANG_UID###')
+                    $data['row']['uid'], '', null, '', '', '&L=###LANG_UID###')
                 ) . '" class="btn btn-default" title="' . $lang->sL('LLL:EXT:info/Resources/Private/Language/locallang_webinfo.xlf:lang_renderl10n_viewPage') . '">' .
                 $this->iconFactory->getIcon('actions-view', Icon::SIZE_SMALL)->render() . '</a>';
             $status = GeneralUtility::hideIfDefaultLanguage($data['row']['l18n_cfg']) ? 'danger' : 'success';
@@ -167,7 +167,7 @@ class TranslationStatusController extends \TYPO3\CMS\Backend\Module\AbstractFunc
                 'returnUrl' => GeneralUtility::getIndpEnv('REQUEST_URI')
             ]);
             $info = '<a href="#" onclick="' . htmlspecialchars(BackendUtility::viewOnClick(
-                    $data['row']['uid'], '', '', '', '', '')
+                    $data['row']['uid'], '', null, '', '', '')
                 ) . '" class="btn btn-default" title="' . $lang->sL('LLL:EXT:info/Resources/Private/Language/locallang_webinfo.xlf:lang_renderl10n_viewPage') . '">' .
                 $this->iconFactory->getIcon('actions-view-page', Icon::SIZE_SMALL)->render() . '</a>';
             $info .= '<a href="' . htmlspecialchars($editUrl)
diff --git a/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php b/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php
index 2ccbace5e2e412038301f00456b3effa0bbc4a17..a4763e0d6fb93937424e509932c451e91b8207f5 100644
--- a/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php
+++ b/typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php
@@ -1467,7 +1467,7 @@ class DatabaseRecordList extends AbstractDatabaseRecordList
                     BackendUtility::viewOnClick(
                         ($table === 'tt_content' ? $this->id : $row['uid']),
                         '',
-                        '',
+                        null,
                         ($table === 'tt_content' ? '#c' . $row['uid'] : '')
                     )
                 ) . '" title="' . htmlspecialchars($this->getLanguageService()->sL('LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:labels.showPage')) . '">';
diff --git a/typo3/sysext/workspaces/Classes/Service/WorkspaceService.php b/typo3/sysext/workspaces/Classes/Service/WorkspaceService.php
index 279bb54674168664c8533463d266d2df91a4b77f..c8f62404312a5c8133cc897154b429082e672898 100644
--- a/typo3/sysext/workspaces/Classes/Service/WorkspaceService.php
+++ b/typo3/sysext/workspaces/Classes/Service/WorkspaceService.php
@@ -769,7 +769,7 @@ class WorkspaceService implements SingletonInterface
 
         // Directly use determined direct page id
         if ($table === 'pages_language_overlay' || $table === 'tt_content') {
-            $viewUrl = BackendUtility::viewOnClick($previewPageId, '', '', '', '', $additionalParameters);
+            $viewUrl = BackendUtility::viewOnClick($previewPageId, '', null, '', '', $additionalParameters);
         // Analyze Page TSconfig options.workspaces.previewPageId
         } elseif (!empty($pageTsConfig['options.']['workspaces.']['previewPageId.'][$table]) || !empty($pageTsConfig['options.']['workspaces.']['previewPageId'])) {
             if (!empty($pageTsConfig['options.']['workspaces.']['previewPageId.'][$table])) {
@@ -784,7 +784,7 @@ class WorkspaceService implements SingletonInterface
             } else {
                 $previewPageId = (int)$previewConfiguration;
             }
-            $viewUrl = BackendUtility::viewOnClick($previewPageId, '', '', '', '', $additionalParameters);
+            $viewUrl = BackendUtility::viewOnClick($previewPageId, '', null, '', '', $additionalParameters);
         // Call user function to render the single record view
         } elseif (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['workspaces']['viewSingleRecord'])) {
             $_params = [