diff --git a/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php b/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php
index 2acc0ad3bb56f16d50445d6097d5951037b91836..e33e0bcdf3461b7068e95828b4135a676c936bb6 100644
--- a/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php
+++ b/typo3/sysext/backend/Classes/Controller/ContentElement/ElementInformationController.php
@@ -106,7 +106,6 @@ class ElementInformationController {
 	 * Constructor
 	 */
 	public function __construct() {
-		$GLOBALS['BACK_PATH'] = '';
 		$GLOBALS['SOBE'] = $this;
 
 		$this->init();
diff --git a/typo3/sysext/backend/Classes/Controller/File/CreateFolderController.php b/typo3/sysext/backend/Classes/Controller/File/CreateFolderController.php
index 2389ca111b12ce55491231ffe113ee101eee9385..456ce558e11ab76eddc644ae0c4bd761dc9ec478 100644
--- a/typo3/sysext/backend/Classes/Controller/File/CreateFolderController.php
+++ b/typo3/sysext/backend/Classes/Controller/File/CreateFolderController.php
@@ -79,8 +79,6 @@ class CreateFolderController {
 	 */
 	public function __construct() {
 		$GLOBALS['SOBE'] = $this;
-		$GLOBALS['BACK_PATH'] = '';
-
 		$this->init();
 	}
 
diff --git a/typo3/sysext/backend/Classes/Controller/File/EditFileController.php b/typo3/sysext/backend/Classes/Controller/File/EditFileController.php
index 14f2ef80cd83a3a65bd83f99478f27f6f4578ce0..3ee422006c84a43181bfb753d96e5a12d80accf6 100644
--- a/typo3/sysext/backend/Classes/Controller/File/EditFileController.php
+++ b/typo3/sysext/backend/Classes/Controller/File/EditFileController.php
@@ -75,8 +75,6 @@ class EditFileController {
 	 */
 	public function __construct() {
 		$GLOBALS['SOBE'] = $this;
-		$GLOBALS['BACK_PATH'] = '';
-
 		$this->init();
 	}
 
diff --git a/typo3/sysext/backend/Classes/Controller/File/FileUploadController.php b/typo3/sysext/backend/Classes/Controller/File/FileUploadController.php
index ca0546ab17afbe9000a350fcdef4d9a31d83d4f7..9af113d2b57b7a64b03cea4a6c80778943e56be1 100644
--- a/typo3/sysext/backend/Classes/Controller/File/FileUploadController.php
+++ b/typo3/sysext/backend/Classes/Controller/File/FileUploadController.php
@@ -70,8 +70,6 @@ class FileUploadController {
 	public function __construct() {
 		$GLOBALS['SOBE'] = $this;
 		$this->getLanguageService()->includeLLFile('EXT:lang/locallang_misc.xlf');
-		$GLOBALS['BACK_PATH'] = '';
-
 		$this->init();
 	}
 
diff --git a/typo3/sysext/backend/Classes/Controller/File/RenameFileController.php b/typo3/sysext/backend/Classes/Controller/File/RenameFileController.php
index 14f45acb7ac426c0988428a400a87623b166c342..a913f25813a0c96eea72d69cdbefbe861840e61d 100644
--- a/typo3/sysext/backend/Classes/Controller/File/RenameFileController.php
+++ b/typo3/sysext/backend/Classes/Controller/File/RenameFileController.php
@@ -68,8 +68,6 @@ class RenameFileController {
 	 */
 	public function __construct() {
 		$GLOBALS['SOBE'] = $this;
-		$GLOBALS['BACK_PATH'] = '';
-
 		$this->init();
 	}
 
diff --git a/typo3/sysext/backend/Classes/Controller/File/ReplaceFileController.php b/typo3/sysext/backend/Classes/Controller/File/ReplaceFileController.php
index d67c4f0b06539e98c3e2e7cc9935be22b4d6b45e..ad40508f8c94fc1a13ff8f4272452dc50adb031c 100644
--- a/typo3/sysext/backend/Classes/Controller/File/ReplaceFileController.php
+++ b/typo3/sysext/backend/Classes/Controller/File/ReplaceFileController.php
@@ -75,8 +75,6 @@ class ReplaceFileController {
 	 */
 	public function __construct() {
 		$GLOBALS['SOBE'] = $this;
-		$GLOBALS['BACK_PATH'] = '';
-
 		$this->init();
 	}
 
@@ -183,7 +181,7 @@ class ReplaceFileController {
 		$docHeaderButtons = array(
 				'back' => ''
 		);
-		$docHeaderButtons['csh'] = BackendUtility::cshItem('xMOD_csh_corebe', 'file_rename', $GLOBALS['BACK_PATH']);
+		$docHeaderButtons['csh'] = BackendUtility::cshItem('xMOD_csh_corebe', 'file_rename');
 		// Back
 		if ($this->returnUrl) {
 			$docHeaderButtons['back'] = '<a href="' . htmlspecialchars(GeneralUtility::linkThisUrl($this->returnUrl))
diff --git a/typo3/sysext/backend/Classes/Controller/FileSystemNavigationFrameController.php b/typo3/sysext/backend/Classes/Controller/FileSystemNavigationFrameController.php
index 09c658ae45ca5a1e65095c6d5426ef800cb5e7e7..06965598661bd78b987d2fb60bedf6ffd7f9b0fa 100644
--- a/typo3/sysext/backend/Classes/Controller/FileSystemNavigationFrameController.php
+++ b/typo3/sysext/backend/Classes/Controller/FileSystemNavigationFrameController.php
@@ -71,7 +71,6 @@ class FileSystemNavigationFrameController {
 	 */
 	public function __construct() {
 		$GLOBALS['SOBE'] = $this;
-		$GLOBALS['BACK_PATH'] = '';
 		$this->init();
 	}
 
diff --git a/typo3/sysext/backend/Classes/Controller/NewRecordController.php b/typo3/sysext/backend/Classes/Controller/NewRecordController.php
index 5af9e4aca1d3360678424b301cbba26f19f8dd51..60b62ca88d09ee1572620a180350dfafd62d2dd1 100644
--- a/typo3/sysext/backend/Classes/Controller/NewRecordController.php
+++ b/typo3/sysext/backend/Classes/Controller/NewRecordController.php
@@ -157,8 +157,6 @@ class NewRecordController {
 	public function __construct() {
 		$GLOBALS['SOBE'] = $this;
 		$this->getLanguageService()->includeLLFile('EXT:lang/locallang_misc.xlf');
-		$GLOBALS['BACK_PATH'] = '';
-
 		$this->init();
 	}
 
diff --git a/typo3/sysext/backend/Classes/Controller/PageLayoutController.php b/typo3/sysext/backend/Classes/Controller/PageLayoutController.php
index 4fc333598c27837de68bba4dd1194537e7327c02..d275aa9d70bf83a8146050dbab50f8153cc92f87 100755
--- a/typo3/sysext/backend/Classes/Controller/PageLayoutController.php
+++ b/typo3/sysext/backend/Classes/Controller/PageLayoutController.php
@@ -531,7 +531,7 @@ class PageLayoutController {
 			$this->doc->JScode .= $this->doc->wrapScriptTags('
 				if (top.fsMod) top.fsMod.recentIds["web"] = ' . (int)$this->id . ';
 				if (top.fsMod) top.fsMod.navFrameHighlightedID["web"] = "pages' . (int)$this->id . '_"+top.fsMod.currentBank; ' . (int)$this->id . ';
-			' . ($this->popView ? BackendUtility::viewOnClick($this->id, $GLOBALS['BACK_PATH'], BackendUtility::BEgetRootLine($this->id)) : '') . '
+			' . ($this->popView ? BackendUtility::viewOnClick($this->id, '', BackendUtility::BEgetRootLine($this->id)) : '') . '
 
 				function deleteRecord(table,id,url) {	//
 					if (confirm(' . GeneralUtility::quoteJSvalue($lang->getLL('deleteWarning')) . ')) {
@@ -1129,7 +1129,7 @@ class PageLayoutController {
 		);
 		// View page
 		if (!VersionState::cast($this->pageinfo['t3ver_state'])->equals(VersionState::DELETE_PLACEHOLDER)) {
-			$buttons['view'] = '<a href="#" onclick="' . htmlspecialchars(BackendUtility::viewOnClick($this->pageinfo['uid'], $GLOBALS['BACK_PATH'], BackendUtility::BEgetRootLine($this->pageinfo['uid']))) . '" title="' . $lang->sL('LLL:EXT:lang/locallang_core.xlf:labels.showPage', TRUE) . '">' . IconUtility::getSpriteIcon('actions-document-view') . '</a>';
+			$buttons['view'] = '<a href="#" onclick="' . htmlspecialchars(BackendUtility::viewOnClick($this->pageinfo['uid'], '', BackendUtility::BEgetRootLine($this->pageinfo['uid']))) . '" title="' . $lang->sL('LLL:EXT:lang/locallang_core.xlf:labels.showPage', TRUE) . '">' . IconUtility::getSpriteIcon('actions-document-view') . '</a>';
 		}
 		// Shortcut
 		if ($this->getBackendUser()->mayMakeShortcut()) {
@@ -1214,7 +1214,6 @@ class PageLayoutController {
 					$buttons['undo'] = '<a href="#"
 						onclick="' . htmlspecialchars('window.location.href=' .
 							GeneralUtility::quoteJSvalue(
-								$GLOBALS['BACK_PATH'] .
 								BackendUtility::getModuleUrl(
 									'record_history',
 									array(
@@ -1230,7 +1229,6 @@ class PageLayoutController {
 					$buttons['history_record'] = '<a href="#"
 						onclick="' . htmlspecialchars('jumpToUrl(' .
 							GeneralUtility::quoteJSvalue(
-								$GLOBALS['BACK_PATH'] .
 								BackendUtility::getModuleUrl(
 									'record_history',
 									array(
diff --git a/typo3/sysext/backend/Classes/Controller/PageTreeNavigationController.php b/typo3/sysext/backend/Classes/Controller/PageTreeNavigationController.php
index de26e439fd2fb4ca5e0fbb4234faa5c434843044..65ae931f1755332395367178b4fe06add2685d81 100644
--- a/typo3/sysext/backend/Classes/Controller/PageTreeNavigationController.php
+++ b/typo3/sysext/backend/Classes/Controller/PageTreeNavigationController.php
@@ -85,8 +85,6 @@ class PageTreeNavigationController {
 	public function __construct() {
 		GeneralUtility::deprecationLog('PageTreeNavigationController is deprecated in favor of new pagetrees');
 		$GLOBALS['SOBE'] = $this;
-		$GLOBALS['BACK_PATH'] = '';
-
 		$this->init();
 	}
 
diff --git a/typo3/sysext/backend/Classes/Utility/BackendUtility.php b/typo3/sysext/backend/Classes/Utility/BackendUtility.php
index 4532396473ccdfc68f830b712810e7929df60607..23addd5ef119ac3acbce950b0193a93e74c2da4d 100755
--- a/typo3/sysext/backend/Classes/Utility/BackendUtility.php
+++ b/typo3/sysext/backend/Classes/Utility/BackendUtility.php
@@ -2629,12 +2629,12 @@ class BackendUtility {
 	 *
 	 * @param string $table Table name
 	 * @param string $field Field name
-	 * @param string $BACK_PATH UNUSED
+	 * @param string $_ UNUSED
 	 * @param bool $force Force display of icon no matter BE_USER setting for help
 	 * @return string HTML content for a help icon/text
 	 * @deprecated since TYPO3 CMS 7, will be removed in TYPO3 CMS 8, use cshItem() instead
 	 */
-	static public function helpTextIcon($table, $field, $BACK_PATH = '', $force = FALSE) {
+	static public function helpTextIcon($table, $field, $_ = '', $force = FALSE) {
 		GeneralUtility::logDeprecatedFunction();
 		if (is_array($GLOBALS['TCA_DESCR'][$table]) && is_array($GLOBALS['TCA_DESCR'][$table]['columns'][$field])) {
 			return self::wrapInHelp($table, $field);
@@ -2760,12 +2760,12 @@ class BackendUtility {
 	 *
 	 * @param string $table Table name ('_MOD_'+module name)
 	 * @param string $field Field name (CSH locallang main key)
-	 * @param string $BACK_PATH Back path, not needed anymore, don't use
+	 * @param string $_ (unused)
 	 * @param string $wrap Wrap code for icon-mode, splitted by "|". Not used for full-text mode.
 	 * @return string HTML content for help text
 	 * @see helpTextIcon()
 	 */
-	static public function cshItem($table, $field, $BACK_PATH = NULL, $wrap = '') {
+	static public function cshItem($table, $field, $_ = '', $wrap = '') {
 		static::getLanguageService()->loadSingleTableDescription($table);
 		if (is_array($GLOBALS['TCA_DESCR'][$table])
 			&& is_array($GLOBALS['TCA_DESCR'][$table]['columns'][$field])) {
diff --git a/typo3/sysext/beuser/Classes/Controller/BackendUserController.php b/typo3/sysext/beuser/Classes/Controller/BackendUserController.php
index fe7a4eda9dc663689dba16d590428fb4cccf9762..3676e7cd2d84e60222ab5f1cdcd458bdc220981c 100644
--- a/typo3/sysext/beuser/Classes/Controller/BackendUserController.php
+++ b/typo3/sysext/beuser/Classes/Controller/BackendUserController.php
@@ -252,7 +252,7 @@ class BackendUserController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionCont
 				$updateData
 			);
 
-			$redirectUrl = $GLOBALS['BACK_PATH'] . 'index.php' . ($GLOBALS['TYPO3_CONF_VARS']['BE']['interfaces'] ? '' : '?commandLI=1');
+			$redirectUrl = 'index.php' . ($GLOBALS['TYPO3_CONF_VARS']['BE']['interfaces'] ? '' : '?commandLI=1');
 			\TYPO3\CMS\Core\Utility\HttpUtility::redirect($redirectUrl);
 		}
 	}
diff --git a/typo3/sysext/beuser/Classes/Controller/PermissionController.php b/typo3/sysext/beuser/Classes/Controller/PermissionController.php
index eb3ad3e2264b6e821044a8081af51fa398ab90a8..59125276627ab907d0829d9bd7ef9e5618a6dd2c 100644
--- a/typo3/sysext/beuser/Classes/Controller/PermissionController.php
+++ b/typo3/sysext/beuser/Classes/Controller/PermissionController.php
@@ -100,7 +100,7 @@ class PermissionController extends ActionController {
 		$view->assign(
 			'previewUrl',
 			BackendUtility::viewonclick(
-				$this->pageInfo['uid'], $GLOBALS['BACK_PATH'],
+				$this->pageInfo['uid'], '',
 				BackendUtility::BEgetRootLine($this->pageInfo['uid'])
 			)
 		);
@@ -168,7 +168,7 @@ class PermissionController extends ActionController {
 		$this->view->assign('viewTree', $tree->tree);
 
 		// CSH for permissions setting
-		$this->view->assign('cshItem', BackendUtility::cshItem('xMOD_csh_corebe', 'perm_module', $GLOBALS['BACK_PATH']));
+		$this->view->assign('cshItem', BackendUtility::cshItem('xMOD_csh_corebe', 'perm_module'));
 	}
 
 	/**
diff --git a/typo3/sysext/core/Classes/TypoScript/ConfigurationForm.php b/typo3/sysext/core/Classes/TypoScript/ConfigurationForm.php
index 56ad1b7a35e0774f355b1ffd0065be7519f92934..b6d23fb149faff9cf1df437eedd8edebc7e23bba 100644
--- a/typo3/sysext/core/Classes/TypoScript/ConfigurationForm.php
+++ b/typo3/sysext/core/Classes/TypoScript/ConfigurationForm.php
@@ -64,7 +64,7 @@ class ConfigurationForm extends ExtendedTemplateService {
 	 * @param string $backPath BackPath is the backReference from current position to typo3/ dir
 	 * @return array
 	 */
-	public function ext_initTSstyleConfig($configTemplate, $pathRel, $pathAbs, $backPath) {
+	public function ext_initTSstyleConfig($configTemplate, $pathRel, $pathAbs, $backPath = '') {
 		// Do not log time-performance information
 		$this->tt_track = 0;
 		$this->constants = array($configTemplate, '');
diff --git a/typo3/sysext/extensionmanager/Classes/Utility/ConfigurationUtility.php b/typo3/sysext/extensionmanager/Classes/Utility/ConfigurationUtility.php
index 4549b1a81ad08052b5af46b18f5958b9eaee14e4..e52166780441e51b7cf2767731c8c1466223c38d 100644
--- a/typo3/sysext/extensionmanager/Classes/Utility/ConfigurationUtility.php
+++ b/typo3/sysext/extensionmanager/Classes/Utility/ConfigurationUtility.php
@@ -14,6 +14,8 @@ namespace TYPO3\CMS\Extensionmanager\Utility;
  * The TYPO3 project - inspiring people to share!
  */
 
+use TYPO3\CMS\Core\TypoScript\ConfigurationForm;
+
 /**
  * Utility for dealing with ext_emconf and ext_conf_template settings
  */
@@ -118,14 +120,14 @@ class ConfigurationUtility implements \TYPO3\CMS\Core\SingletonInterface {
 		if ((string)$rawConfigurationString !== '') {
 			$extensionPathInformation = $this->getExtensionPathInformation($extensionKey);
 
-			$tsStyleConfig = $this->objectManager->get(\TYPO3\CMS\Core\TypoScript\ConfigurationForm::class);
+			/** @var ConfigurationForm $tsStyleConfig */
+			$tsStyleConfig = $this->objectManager->get(ConfigurationForm::class);
 			$tsStyleConfig->doNotSortCategoriesBeforeMakingForm = TRUE;
 
 			$theConstants = $tsStyleConfig->ext_initTSstyleConfig(
 				$rawConfigurationString,
 				$extensionPathInformation['siteRelPath'],
-				PATH_site . $extensionPathInformation['siteRelPath'],
-				$GLOBALS['BACK_PATH']
+				PATH_site . $extensionPathInformation['siteRelPath']
 			);
 
 			// Loop through configuration items, see if it is assigned to a sub category
diff --git a/typo3/sysext/filelist/Classes/Controller/FileListController.php b/typo3/sysext/filelist/Classes/Controller/FileListController.php
index ed267794850fa528c018450fe2edc6b508b7d245..8b83546b7f5994fb495e4efd432170b81b56f6e9 100644
--- a/typo3/sysext/filelist/Classes/Controller/FileListController.php
+++ b/typo3/sysext/filelist/Classes/Controller/FileListController.php
@@ -516,8 +516,8 @@ class FileListController {
 		$buttons['csh'] = BackendUtility::cshItem('xMOD_csh_corebe', 'filelist_module');
 		// Upload button (only if upload to this directory is allowed)
 		if ($this->folderObject && $this->folderObject->getStorage()->checkUserActionPermission('add', 'File') && $this->folderObject->checkActionPermission('write')) {
-			$buttons['upload'] = '<a href="' . htmlspecialchars($GLOBALS['BACK_PATH']
-				. BackendUtility::getModuleUrl(
+			$buttons['upload'] = '<a href="' . htmlspecialchars(
+				BackendUtility::getModuleUrl(
 					'file_upload',
 					array(
 						'target' => $this->folderObject->getCombinedIdentifier(),
@@ -529,8 +529,8 @@ class FileListController {
 		if ($this->folderObject && $this->folderObject->checkActionPermission('write')
 			&& ($this->folderObject->getStorage()->checkUserActionPermission('add', 'File') || $this->folderObject->checkActionPermission('add'))
 		) {
-			$buttons['new'] = '<a href="' . htmlspecialchars($GLOBALS['BACK_PATH']
-				. BackendUtility::getModuleUrl(
+			$buttons['new'] = '<a href="' . htmlspecialchars(
+				BackendUtility::getModuleUrl(
 					'file_newfolder',
 					array(
 						'target' => $this->folderObject->getCombinedIdentifier(),
diff --git a/typo3/sysext/filelist/Classes/FileList.php b/typo3/sysext/filelist/Classes/FileList.php
index 75590c6d296ddac95ea9c8c4fcc5174257f7e7ac..d7cf545413de94590769ec3f5421f27a6a4eefb3 100644
--- a/typo3/sysext/filelist/Classes/FileList.php
+++ b/typo3/sysext/filelist/Classes/FileList.php
@@ -688,7 +688,7 @@ class FileList extends AbstractRecordList {
 									$data = array(
 										'sys_file_metadata' => array($translations[$languageId]['uid'] => 'edit')
 									);
-									$editOnClick = BackendUtility::editOnClick(GeneralUtility::implodeArrayForUrl('edit', $data), $GLOBALS['BACK_PATH'], $this->listUrl());
+									$editOnClick = BackendUtility::editOnClick(GeneralUtility::implodeArrayForUrl('edit', $data), '', $this->listUrl());
 									$languageCode .= '<a href="#" class="btn btn-default" onclick="' . htmlspecialchars($editOnClick) . '">' . $flagButtonIcon . '</a>';
 								} else {
 									$parameters = [
diff --git a/typo3/sysext/frontend/Classes/Controller/TranslationStatusController.php b/typo3/sysext/frontend/Classes/Controller/TranslationStatusController.php
index cc368be93719db2d0cf6bbfc2600974c374fe260..f009e1eb0c55cf92c74096766c17e94bbcda9d48 100644
--- a/typo3/sysext/frontend/Classes/Controller/TranslationStatusController.php
+++ b/typo3/sysext/frontend/Classes/Controller/TranslationStatusController.php
@@ -140,7 +140,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'], $GLOBALS['BACK_PATH'], '', '', '', '&L=###LANG_UID###')
+					$data['row']['uid'], '', '', '', '', '&L=###LANG_UID###')
 				) . '" title="' . $lang->sL('LLL:EXT:frontend/Resources/Private/Language/locallang_webinfo.xlf:lang_renderl10n_viewPage') . '">' .
 				IconUtility::getSpriteIcon('actions-document-view') . '</a>';
 			$status = $data['row']['l18n_cfg'] & 1 ? 'danger' : 'success';
diff --git a/typo3/sysext/func/Classes/Controller/PageFunctionsController.php b/typo3/sysext/func/Classes/Controller/PageFunctionsController.php
index 82d06fe0374af4a9fe8107f7d0ba7e1e36336af8..58e56d9811d9fb5de738b00a65885d875e7d22dc 100644
--- a/typo3/sysext/func/Classes/Controller/PageFunctionsController.php
+++ b/typo3/sysext/func/Classes/Controller/PageFunctionsController.php
@@ -145,7 +145,7 @@ class PageFunctionsController extends \TYPO3\CMS\Backend\Module\BaseScriptClass
 		if ($this->id && is_array($this->pageinfo)) {
 			// View page
 			$buttons['view'] = '<a href="#" '
-				. 'onclick="' . htmlspecialchars(BackendUtility::viewOnClick($this->pageinfo['uid'], $GLOBALS['BACK_PATH'], BackendUtility::BEgetRootLine($this->pageinfo['uid']))) . '" '
+				. 'onclick="' . htmlspecialchars(BackendUtility::viewOnClick($this->pageinfo['uid'], '', BackendUtility::BEgetRootLine($this->pageinfo['uid']))) . '" '
 				. 'title="' . $this->getLanguageService()->sL('LLL:EXT:lang/locallang_core.xlf:labels.showPage', TRUE) . '">'
 				. \TYPO3\CMS\Backend\Utility\IconUtility::getSpriteIcon('actions-document-view') . '</a>';
 			// Shortcut
diff --git a/typo3/sysext/impexp/Classes/ImportExport.php b/typo3/sysext/impexp/Classes/ImportExport.php
index c3cb1b3d261989dfe0092be084d1b70be0272edc..4f9186f5047f025473360638d0b2576e8c4ff706 100644
--- a/typo3/sysext/impexp/Classes/ImportExport.php
+++ b/typo3/sysext/impexp/Classes/ImportExport.php
@@ -3651,7 +3651,7 @@ class ImportExport {
 			if ($table === 'pages') {
 				$viewID = $this->mode === 'export' ? $uid : ($this->doesImport ? $this->import_mapId['pages'][$uid] : 0);
 				if ($viewID) {
-					$pInfo['title'] = '<a href="#" onclick="' . htmlspecialchars(BackendUtility::viewOnClick($viewID, $GLOBALS['BACK_PATH'])) . 'return false;">' . $pInfo['title'] . '</a>';
+					$pInfo['title'] = '<a href="#" onclick="' . htmlspecialchars(BackendUtility::viewOnClick($viewID)) . 'return false;">' . $pInfo['title'] . '</a>';
 				}
 			}
 		}
diff --git a/typo3/sysext/recordlist/Classes/Controller/ElementBrowserController.php b/typo3/sysext/recordlist/Classes/Controller/ElementBrowserController.php
index 985ad8a3989b9a39e3fafe1da60cac70d4d9fa0a..8a14d52282cdc2a3b72be7a1213fd06f5d8ac7bf 100644
--- a/typo3/sysext/recordlist/Classes/Controller/ElementBrowserController.php
+++ b/typo3/sysext/recordlist/Classes/Controller/ElementBrowserController.php
@@ -64,7 +64,6 @@ class ElementBrowserController {
 	 */
 	public function __construct() {
 		$GLOBALS['SOBE'] = $this;
-		$GLOBALS['BACK_PATH'] = '';
 
 		// Creating backend template object:
 		// this might not be needed but some classes refer to $GLOBALS['SOBE']->doc, so ...
diff --git a/typo3/sysext/taskcenter/Classes/Controller/TaskModuleController.php b/typo3/sysext/taskcenter/Classes/Controller/TaskModuleController.php
index d28db6e04b0ac023eb90d914033fe3e7dd3f8bf0..b582f6e87c251715bf74160b5d7d36fc334401d2 100644
--- a/typo3/sysext/taskcenter/Classes/Controller/TaskModuleController.php
+++ b/typo3/sysext/taskcenter/Classes/Controller/TaskModuleController.php
@@ -238,11 +238,11 @@ class TaskModuleController extends \TYPO3\CMS\Backend\Module\BaseScriptClass {
 						$absIconPath = GeneralUtility::getFileAbsFilename($item['icon']);
 						// If the file indeed exists, assemble relative path to it
 						if (file_exists($absIconPath)) {
-							$icon = $GLOBALS['BACK_PATH'] . '../' . str_replace(PATH_site, '', $absIconPath);
+							$icon = '../' . str_replace(PATH_site, '', $absIconPath);
 							$icon = '<img src="' . $icon . '" title="' . $title . '" alt="' . $title . '" />';
 						}
 						if (@is_file($icon)) {
-							$icon = '<img' . IconUtility::skinImg($GLOBALS['BACK_PATH'], $icon, 'width="16" height="16"') . ' title="' . $title . '" alt="' . $title . '" />';
+							$icon = '<img' . IconUtility::skinImg('', $icon, 'width="16" height="16"') . ' title="' . $title . '" alt="' . $title . '" />';
 						}
 					} else {
 						$icon = $item['icon'];
diff --git a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateConstantEditorModuleFunctionController.php b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateConstantEditorModuleFunctionController.php
index 6ab9d2b385d6d1f0ea946ac07c53ad0f0177e0c3..558716040d0113adcb2192942d65c41f7417f42e 100644
--- a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateConstantEditorModuleFunctionController.php
+++ b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateConstantEditorModuleFunctionController.php
@@ -59,7 +59,7 @@ class TypoScriptTemplateConstantEditorModuleFunctionController extends AbstractF
 
 		$templateService->init();
 		$templateService->ext_localGfxPrefix = ExtensionManagementUtility::extPath('tstemplate');
-		$templateService->ext_localWebGfxPrefix = $GLOBALS['BACK_PATH'] . ExtensionManagementUtility::extRelPath('tstemplate') . 'Resources/Public/';
+		$templateService->ext_localWebGfxPrefix = ExtensionManagementUtility::extRelPath('tstemplate') . 'Resources/Public/';
 
 		// Get the row of the first VISIBLE template of the page. whereclause like the frontend.
 		$GLOBALS['tplRow'] = $templateService->ext_getFirstTemplate($pageId, $template_uid);
diff --git a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php
index ba1760bba15410cfe963e9e9c93e6c16a7e4b0f2..036e146f1a8935308601fa1ffcab8f024d3b08c7 100755
--- a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php
+++ b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateModuleController.php
@@ -280,7 +280,7 @@ class TypoScriptTemplateModuleController extends BaseScriptClass {
 
 		if ($this->id && $this->access) {
 			// View page
-			$buttons['view'] = '<a href="#" onclick="' . htmlspecialchars(BackendUtility::viewOnClick($this->pageinfo['uid'], $GLOBALS['BACK_PATH'], BackendUtility::BEgetRootLine($this->pageinfo['uid']))) . '" title="' . $lang->sL('LLL:EXT:lang/locallang_core.xlf:labels.showPage', TRUE) . '">' . IconUtility::getSpriteIcon('actions-document-view') . '</a>';
+			$buttons['view'] = '<a href="#" onclick="' . htmlspecialchars(BackendUtility::viewOnClick($this->pageinfo['uid'], '', BackendUtility::BEgetRootLine($this->pageinfo['uid']))) . '" title="' . $lang->sL('LLL:EXT:lang/locallang_core.xlf:labels.showPage', TRUE) . '">' . IconUtility::getSpriteIcon('actions-document-view') . '</a>';
 			if ($this->extClassConf['name'] == TypoScriptTemplateInformationModuleFunctionController::class) {
 				// NEW button
 				$urlParameters = array(
diff --git a/typo3/sysext/version/Classes/Controller/VersionModuleController.php b/typo3/sysext/version/Classes/Controller/VersionModuleController.php
index 22f7c00a70b004a7624e54bfbd0584ad23aecec6..ea4e20c061124df1d6353e60442cf5ed6e0fe2b4 100644
--- a/typo3/sysext/version/Classes/Controller/VersionModuleController.php
+++ b/typo3/sysext/version/Classes/Controller/VersionModuleController.php
@@ -248,7 +248,7 @@ class VersionModuleController extends \TYPO3\CMS\Backend\Module\BaseScriptClass
 		// CSH
 		if ($this->recordFound && $GLOBALS['TCA'][$this->table]['ctrl']['versioningWS']) {
 			// View page
-			$buttons['view'] = '<a href="#" onclick="' . htmlspecialchars(BackendUtility::viewOnClick($this->pageinfo['uid'], $GLOBALS['BACK_PATH'], BackendUtility::BEgetRootLine($this->pageinfo['uid']))) . '" title="' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xlf:labels.showPage', TRUE) . '">' . IconUtility::getSpriteIcon('actions-document-view') . '</a>';
+			$buttons['view'] = '<a href="#" onclick="' . htmlspecialchars(BackendUtility::viewOnClick($this->pageinfo['uid'], '', BackendUtility::BEgetRootLine($this->pageinfo['uid']))) . '" title="' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xlf:labels.showPage', TRUE) . '">' . IconUtility::getSpriteIcon('actions-document-view') . '</a>';
 			// Shortcut
 			if ($GLOBALS['BE_USER']->mayMakeShortcut()) {
 				$buttons['shortcut'] = $this->doc->makeShortcutIcon('id, edit_record, pointer, new_unique_uid, search_field, search_levels, showLimit', implode(',', array_keys($this->MOD_MENU)), $this->MCONF['name']);
diff --git a/typo3/sysext/version/Classes/View/VersionView.php b/typo3/sysext/version/Classes/View/VersionView.php
index 5b26cd548a9d2d2ade41ccf3e39a445ca00629ed..bfce0c7f544443198f088d6c245e0be6e4884144 100644
--- a/typo3/sysext/version/Classes/View/VersionView.php
+++ b/typo3/sysext/version/Classes/View/VersionView.php
@@ -56,7 +56,7 @@ class VersionView {
 					$opt[] = '<option value="' . htmlspecialchars(GeneralUtility::linkThisScript(array('id' => $vRow['uid']))) . '"' . ($id == $vRow['uid'] ? ' selected="selected"' : '') . '>' . htmlspecialchars($label) . '</option>';
 				}
 				// Add management link:
-				$management = '<input type="button" value="' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xlf:ver.mgm', TRUE) . '" onclick="window.location.href=\'' . htmlspecialchars($GLOBALS['BACK_PATH'] . \TYPO3\CMS\Backend\Utility\BackendUtility::getModuleUrl('web_txversionM1', array('table' => 'pages', 'uid' => $onlineId))) . '\';" />';
+				$management = '<input type="button" value="' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xlf:ver.mgm', TRUE) . '" onclick="window.location.href=\'' . htmlspecialchars(\TYPO3\CMS\Backend\Utility\BackendUtility::getModuleUrl('web_txversionM1', array('table' => 'pages', 'uid' => $onlineId))) . '\';" />';
 				// Create onchange handler:
 				$onChange = 'window.location.href=this.options[this.selectedIndex].value;';
 				// Controls: