Completed 300-custom-new-order Mailtemplate handling for RML

This commit is contained in:
Frank Schubert
2025-06-13 05:40:17 +02:00
parent 05fe36679f
commit fdcac66a84
5 changed files with 140 additions and 17 deletions

View File

@@ -366,7 +366,11 @@ class mfBaseModel {
}
public function __unset($name) {
unset($this->data->$name);
if($name === "data") {
unset($this->data);
} else {
unset($this->data->$name);
}
}
public function __debugInfo() {