Actions
Bug #55475
closedError when saving Domain system record
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
-
Start date:
2014-01-30
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.1
PHP Version:
5.5
Tags:
Complexity:
no-brainer
Is Regression:
No
Sprint Focus:
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
Actions