Skip to content
Snippets Groups Projects
Commit a8b9152f authored by Markus Klein's avatar Markus Klein Committed by Oliver Bartsch
Browse files

[BUGFIX] Ensure that formatValue for dates/times returns a string

The unit tests are adjusted to have strict type checking.

The bug is actually covered with a test already, only the assertion
was wrong.

Resolves: #99521
Releases: main, 11.5
Change-Id: I52a1aa1a969bcc9d32df4ab6f43726bef671fe66
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77353


Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Tested-by: default avatarcore-ci <typo3@b13.com>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
parent 6fe894c1
Branches
Tags
No related merge requests found
......@@ -187,7 +187,7 @@ abstract class AbstractFormElement extends AbstractNode
* @param array $formatOptions Format options
* @return string Formatted field value
*/
protected function formatValue($format, $itemValue, $formatOptions = [])
protected function formatValue($format, $itemValue, $formatOptions = []): string
{
switch ($format) {
case 'date':
......@@ -287,7 +287,8 @@ abstract class AbstractFormElement extends AbstractNode
default:
// Do nothing e.g. when $format === ''
}
return $itemValue;
// Make sure we have a string in the end. $itemValue could be null, for instance.
return (string)$itemValue;
}
/**
......
......@@ -276,6 +276,6 @@ class AbstractFormElementTest extends UnitTestCase
$result = $subject->_call('formatValue', $config['format'], $itemValue, $config['format.'] ?? []);
date_default_timezone_set($timezoneBackup);
self::assertEquals($expectedResult, $result);
self::assertSame($expectedResult, $result);
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment