Compare commits

...

1 Commits

Author SHA1 Message Date
chaim f8022279ad fix: change date format from dd/mm/yyyy to dd.mm.yyyy
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-09 21:24:18 +00:00
2 changed files with 2 additions and 2 deletions
@@ -392,7 +392,7 @@ class DirectAccessReportGenerator
{
if (!$date) return '';
if (preg_match('/^(\d{4})-(\d{2})-(\d{2})$/', $date, $m)) {
return "{$m[3]}/{$m[2]}/{$m[1]}";
return "{$m[3]}.{$m[2]}.{$m[1]}";
}
return $date;
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "LegalAssistance",
"version": "2.0.6",
"version": "2.0.7",
"acceptableVersions": [">=8.0.0"],
"php": [">=8.1"],
"releaseDate": "2026-04-09",