Skip to content

Commit

Permalink
fix(ZMSKVR): set toDerefencedCustomTextfield and toDerefencedAmendmen…
Browse files Browse the repository at this point in the history
…t text content to NULL (#893)
  • Loading branch information
ThomasAFink authored Feb 20, 2025
1 parent 548ea6d commit 68debf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zmsentities/src/Zmsentities/Process.php
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ public function toDerefencedAmendment()
array(
'BuergerID' => $this->id,
'StandortID' => $this->scope['id'],
'Anmerkung' => $this->amendment,
'Anmerkung' => NULL,
'IPTimeStamp' => $this->createTimestamp,
'LastChange' => $lastChange,
),
Expand All @@ -638,7 +638,7 @@ public function toDerefencedCustomTextfield()
array(
'BuergerID' => $this->id,
'StandortID' => $this->scope['id'],
'CustomTextfield' => $this->customTextfield,
'CustomTextfield' => NULL,
'IPTimeStamp' => $this->createTimestamp,
'LastChange' => $lastChange,
),
Expand Down

0 comments on commit 68debf6

Please sign in to comment.