From e98c6637ac014e1f9b68eeb3fc6ae571db6d5be3 Mon Sep 17 00:00:00 2001 From: Eric Espie Date: Thu, 16 Jan 2025 09:30:54 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B08108=20-=20EVENT=5FDB=5FAFTER=5FWRITE:?= =?UTF-8?q?=20$oEventData->Get('changes')=20missing=20previous=20values?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/dbobject.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dbobject.class.php b/core/dbobject.class.php index 48b3364ed..f08f74d24 100644 --- a/core/dbobject.class.php +++ b/core/dbobject.class.php @@ -3819,7 +3819,7 @@ abstract class DBObject implements iDisplay } try { - $this->PostUpdateActions($aChanges, $sClass); + $this->PostUpdateActions($this->m_aPreviousValuesForUpdatedAttributes, $sClass); } catch (Exception $e) { $this->LogCRUDExit(__METHOD__, 'Error: '.$e->getMessage());