Skip to content

Commit

Permalink
Update 3.5.20221020 (final)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilkware committed Nov 14, 2022
1 parent a57535e commit 2aa6d13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Abfall_IO/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ public function Update()

// write data to variable
foreach ($vars as $key => $var) {
$this->SetValueString((string)$var['ident'], $var['date']);
$this->SetValueString((string) $var['ident'], $var['date']);
}

// execute Script
Expand Down
2 changes: 1 addition & 1 deletion Awido/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ public function Update()
foreach ($array as $line) {
if ($line['exist'] == true) {
// falls haendich geloescht, dann eben nicht!
$this->SetValueString((string)$line['ident'], $line['value']);
$this->SetValueString((string) $line['ident'], $line['value']);
}
}

Expand Down
2 changes: 1 addition & 1 deletion MyMuell/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public function Update()

// write data to variable
foreach ($waste as $key => $var) {
$this->SetValueString((string)$key, date('d.m.Y', $var['date']));
$this->SetValueString((string) $key, date('d.m.Y', $var['date']));
}

// execute Script
Expand Down

0 comments on commit 2aa6d13

Please sign in to comment.