Open vertexvaar opened 1 month ago
quick fix with composer patches
Index: Classes/Command/GlossaryListCommand.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/Classes/Command/GlossaryListCommand.php b/Classes/Command/GlossaryListCommand.php
--- a/Classes/Command/GlossaryListCommand.php
+++ b/Classes/Command/GlossaryListCommand.php (date 1729065678558)
@@ -62,7 +62,9 @@
$rows = [];
foreach ($glossaries as $eachGlossary) {
- $rows[] = $eachGlossary;
+ $row = (array) $eachGlossary;
+ $row['creationTime'] = $row['creationTime']->format('Y-m-d H:i:s');
+ $rows[] = $row;
}
$table = new Table($output);
Hey @vertexvaar Could you please check, if the error still appears in latest main branch? Quite after the last release we changed this part and updated the listing of the glossaries, which will get into next release. This means, your patch is valid for 4.3.1, but not for latest main.
I'm sorry for this late feedback about this. I will be appreciated about a feedback from you.
Describe the bug
To Reproduce
Exception with Stacktrace
TYPO3 Setup
Composer install in docker