From 85aa8905c17c9ca83a2931c5f959ba39f8a98471 Mon Sep 17 00:00:00 2001 From: Wolfgang Klinger <wolfgang@wazum.com> Date: Tue, 13 Feb 2018 08:12:54 +0100 Subject: [PATCH] [BUGFIX] Add missing space in regular expression DataHandler::clearPrefixFromValue is missing a space in the regular expression when removing the prependAtCopy label. That leads to wrong headers in copied elements. Releases: master Resolves: #83870 Change-Id: I49cde9a9a20686715d9b042173f89bfeb2bd112f Reviewed-on: https://review.typo3.org/55694 Reviewed-by: Mathias Brodala <mbrodala@pagemachine.de> Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Mathias Schreiber <mathias.schreiber@typo3.com> Tested-by: Mathias Schreiber <mathias.schreiber@typo3.com> Reviewed-by: Frank Naegler <frank.naegler@typo3.org> Tested-by: Frank Naegler <frank.naegler@typo3.org> --- typo3/sysext/core/Classes/DataHandling/DataHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/core/Classes/DataHandling/DataHandler.php b/typo3/sysext/core/Classes/DataHandling/DataHandler.php index 07830384692c..73ef16878c36 100644 --- a/typo3/sysext/core/Classes/DataHandling/DataHandler.php +++ b/typo3/sysext/core/Classes/DataHandling/DataHandler.php @@ -8254,7 +8254,7 @@ class DataHandler implements LoggerAwareInterface */ public function clearPrefixFromValue($table, $value) { - $regex = '/' . sprintf(quotemeta($this->prependLabel($table)), '[0-9]*') . '$/'; + $regex = '/\s' . sprintf(preg_quote($this->prependLabel($table)), '[0-9]*') . '$/'; return @preg_replace($regex, '', $value); } -- GitLab