diff --git a/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php b/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php index 200e26cf342aae331865e3e256f05e254313c523..f9ea553c622c4c820cbf5ac9ebb5350c539a60ed 100644 --- a/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php +++ b/typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php @@ -90,7 +90,6 @@ class SystemEnvironmentBuilder { // TYPO3 external links define('TYPO3_URL_GENERAL', 'http://typo3.org/'); - define('TYPO3_URL_ORG', 'http://typo3.org/'); define('TYPO3_URL_LICENSE', 'http://typo3.org/typo3-cms/overview/licenses/'); define('TYPO3_URL_EXCEPTION', 'http://typo3.org/go/exception/CMS/'); define('TYPO3_URL_MAILINGLISTS', 'http://lists.typo3.org/cgi-bin/mailman/listinfo'); diff --git a/typo3/sysext/core/Documentation/Changelog/master/Breaking-68814-RemoveOfBaseConstantTYPO3_URL_ORG.rst b/typo3/sysext/core/Documentation/Changelog/master/Breaking-68814-RemoveOfBaseConstantTYPO3_URL_ORG.rst new file mode 100644 index 0000000000000000000000000000000000000000..c882bcad8293da9db8ddb79c4233fe87a2f11bef --- /dev/null +++ b/typo3/sysext/core/Documentation/Changelog/master/Breaking-68814-RemoveOfBaseConstantTYPO3_URL_ORG.rst @@ -0,0 +1,21 @@ +======================================================== +Breaking: #68814 - Remove of base constant TYPO3_URL_ORG +======================================================== + +Description +=========== + +Base constant TYPO3_URL_ORG defined in SystemEnvironmentBuilder::defineBaseConstants() can be removed. +It´s for internal usage only and defined at 2 places in the core. + + +Impact +====== + +Constant TYPO3_URL_ORG no longer exists. + + +Migration +========= + +Use TYPO3_URL_GENERAL instead. \ No newline at end of file diff --git a/typo3/sysext/frontend/Classes/Page/PageGenerator.php b/typo3/sysext/frontend/Classes/Page/PageGenerator.php index ced0a61c4f59c19f63d81aa07313a7a2bcf5b988..e1e377b91dc3a7dd6141b16b13fee1c28157b68e 100644 --- a/typo3/sysext/frontend/Classes/Page/PageGenerator.php +++ b/typo3/sysext/frontend/Classes/Page/PageGenerator.php @@ -386,7 +386,7 @@ class PageGenerator { $pageRenderer->addInlineComment(' This website is powered by TYPO3 - inspiring people to share! TYPO3 is a free open source Content Management Framework initially created by Kasper Skaarhoj and licensed under GNU/GPL. TYPO3 is copyright ' . TYPO3_copyright_year . ' of Kasper Skaarhoj. Extensions are copyright of their respective owners. - Information and contribution at ' . TYPO3_URL_ORG . ' + Information and contribution at ' . TYPO3_URL_GENERAL . ' '); if ($tsfe->baseUrl) { $pageRenderer->setBaseUrl($tsfe->baseUrl); diff --git a/typo3/sysext/install/Resources/Private/Partials/Action/Common/Copyright.html b/typo3/sysext/install/Resources/Private/Partials/Action/Common/Copyright.html index 3aaeceb12d4a025047946843a4939eb875e3daae..c0e832e1ecf91e8f37a169b8d80059e0926ff3b8 100644 --- a/typo3/sysext/install/Resources/Private/Partials/Action/Common/Copyright.html +++ b/typo3/sysext/install/Resources/Private/Partials/Action/Common/Copyright.html @@ -12,6 +12,6 @@ </p> <p> <a href="{i:constant(name: 'TYPO3_URL_DONATE')}"><strong>Donate</strong></a> | - <a href="{i:constant(name: 'TYPO3_URL_ORG')}">TYPO3.org</a> + <a href="{i:constant(name: 'TYPO3_URL_GENERAL')}">TYPO3.org</a> </p> </div> \ No newline at end of file