diff --git a/Awido/README.md b/Awido/README.md index 3f8ceda..6e10e7e 100644 --- a/Awido/README.md +++ b/Awido/README.md @@ -2,7 +2,7 @@ [![Version](https://img.shields.io/badge/Symcon-PHP--Modul-red.svg)](https://www.symcon.de/service/dokumentation/entwicklerbereich/sdk-tools/sdk-php/) [![Product](https://img.shields.io/badge/Symcon%20Version-6.0-blue.svg)](https://www.symcon.de/produkt/) -[![Version](https://img.shields.io/badge/Modul%20Version-3.3.20220309-orange.svg)](https://github.com/Wilkware/IPSymconAwido) +[![Version](https://img.shields.io/badge/Modul%20Version-3.4.20230124-orange.svg)](https://github.com/Wilkware/IPSymconAwido) [![License](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-green.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/) [![Actions](https://github.com/Wilkware/IPSymconAwido/workflows/Check%20Style/badge.svg)](https://github.com/Wilkware/IPSymconAwido/actions) @@ -126,6 +126,10 @@ __Beispiel__: `AWIDO_Update(12345);` ### 8. Versionshistorie +v3.4.20230124 + +* _FIX_: Skripte in den erweiterten Einstellungen werden wieder gespeichert + v3.3.20220309 * _NEU_: Konfigurationsformular angepasst diff --git a/Awido/module.php b/Awido/module.php index e2c671c..9f4ce5f 100644 --- a/Awido/module.php +++ b/Awido/module.php @@ -42,7 +42,7 @@ public function Create() // Advanced Settings $this->RegisterPropertyBoolean('createVariables', false); $this->RegisterPropertyBoolean('activateAWIDO', true); - $this->RegisterPropertyInteger('scriptID', 0); + $this->RegisterPropertyInteger('settingsScript', 0); // Attributes for dynamic configuration forms (> v2.0) $this->RegisterAttributeString('cID', 'null'); $this->RegisterAttributeString('pID', 'null'); @@ -210,7 +210,7 @@ public function Update() } } $fractIds = implode(',', $fractions); - $scriptId = $this->ReadPropertyInteger('scriptID'); + $scriptId = $this->ReadPropertyInteger('settingsScript'); $this->SendDebug(__FUNCTION__, 'clientID=' . $clientId . ', placeId=' . $placeId . ', streetId=' . $streetId . ', addonId=' . $addonId . ', fractIds=' . $fractIds); if ($clientId == 'null' || $placeId == 'null' || $streetId == 'null' || $addonId == 'null' || $fractIds == 'null') {