Bug #55475
Error when saving Domain system record
Status: | Resolved | Start date: | 2014-01-30 | |
---|---|---|---|---|
Priority: | Must have | Due date: | ||
Assigned To: | - | % Done: | 100% |
|
Category: | - | Spent time: | - | |
Target version: | - | |||
TYPO3 Version: | 6.1 | Is Regression: | No | |
PHP Version: | 5.5 | Sprint Focus: | ||
Complexity: | no-brainer |
Description
When saving a domain system record an error occurs on line 2339 of typo3/sysext/core/Classes/DataHandling/DataHandler.php
case 'domainname': if (!preg_match('/^[a-z0-9.\\-]*$/i', $value)) { $value = GeneralUtility::idnaEncode($value); } break;
$value = GeneralUtility::idnaEncode($value);should be
\TYPO3\CMS\Core\Utility\GeneralUtility::idnaEncode($value);
This bug was introduced in commit using hash
c99a07a9442ea1ddbe0ce95881251eb927c209ac
Related issues
Associated revisions
[BUGFIX] Regression in DataHandler
The fix for issue #53862 calls GeneralUtility::idnaEncode
without fully qualified class namespace.
Follow-up to: c99a07a9
Resolves: #55475
Releases: 6.1, 6.0
Change-Id: I8ba161ee73e7456da53d2182b4a22d87dad9d53c
Reviewed-on: https://review.typo3.org/27173
Reviewed-by: Steffen Müller
Tested-by: Steffen Müller
Reviewed-by: Christian Kuhn
Tested-by: Christian Kuhn
[BUGFIX] Regression in DataHandler
The fix for issue #53862 calls GeneralUtility::idnaEncode
without fully qualified class namespace.
Follow-up to: c99a07a9
Resolves: #55475
Releases: 6.1, 6.0
Change-Id: I8ba161ee73e7456da53d2182b4a22d87dad9d53c
Reviewed-on: https://review.typo3.org/27174
Reviewed-by: Christian Kuhn
Tested-by: Christian Kuhn
Reviewed-by: Wouter Wolters
Tested-by: Wouter Wolters
History
#1 Updated by Jesper Mathiasen over 1 year ago
This occurs in V 6.1.7
#2 Updated by Gerrit Code Review over 1 year ago
- Status changed from New to Under Review
Patch set 1 for branch TYPO3_6-1 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/27173
#3 Updated by Gerrit Code Review over 1 year ago
Patch set 2 for branch TYPO3_6-1 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/27173
#4 Updated by Gerrit Code Review over 1 year ago
Patch set 1 for branch TYPO3_6-0 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/27174
#5 Updated by Wouter Wolters over 1 year ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset dc271e4fe63c7c960e087becc5f9f3e98e57d39a.