From c63f465eb8466efa77eb49b8b22cb65f2d4eea70 Mon Sep 17 00:00:00 2001 From: ralf Date: Mon, 29 Apr 2024 12:23:28 +0200 Subject: [PATCH] fix PHP 8.3 Error: Cannot create dynamic property DateMalformedStringException::$details --- api/src/Etemplate/Widget/Date.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Etemplate/Widget/Date.php b/api/src/Etemplate/Widget/Date.php index 39b64e96a9..729599f257 100644 --- a/api/src/Etemplate/Widget/Date.php +++ b/api/src/Etemplate/Widget/Date.php @@ -135,7 +135,7 @@ class Date extends Transformer // do NOT stall for somehow invalid values: log it and return empty if($value) { - $e->details = $this->id . ': ' . json_encode($value); + //error_log(__METHOD__."()".$this->id . ': ' . json_encode($value)); _egw_log_exception($e); } return null;