Skip to content

Commit

Permalink
Update v3.4.20230124
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilkware committed Jan 24, 2023
1 parent 8add1c1 commit 8436102
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Awido/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Awido/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down Expand Up @@ -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') {
Expand Down

0 comments on commit 8436102

Please sign in to comment.