diff --git a/typo3/sysext/frontend/Classes/Page/PageGenerator.php b/typo3/sysext/frontend/Classes/Page/PageGenerator.php
index 9cbf920dfa348619394cfc11fe33aae155080662..6eef4421670cf7a7655dd57d8f038b9ebcefa21d 100644
--- a/typo3/sysext/frontend/Classes/Page/PageGenerator.php
+++ b/typo3/sysext/frontend/Classes/Page/PageGenerator.php
@@ -372,12 +372,7 @@ class PageGenerator
                 $source = isset($jQueryTS['source']) ? $jQueryTS['source'] : null;
                 // When "noConflict" is not set or "1" enable the default jQuery noConflict mode, otherwise disable the namespace
                 if (!isset($jQueryTS['noConflict']) || !empty($jQueryTS['noConflict'])) {
-                    // Set namespace to the "noConflict.namespace" value if "noConflict.namespace" has a value
-                    if (!empty($jQueryTS['noConflict.']['namespace'])) {
-                        $namespace = $jQueryTS['noConflict.']['namespace'];
-                    } else {
-                        $namespace = PageRenderer::JQUERY_NAMESPACE_DEFAULT_NOCONFLICT;
-                    }
+                    $namespace = 'noConflict';
                 } else {
                     $namespace = PageRenderer::JQUERY_NAMESPACE_NONE;
                 }