Skip to content

Commit

Permalink
Update 3.5.20221020
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilkware committed Oct 22, 2022
1 parent 0349952 commit eb82a7c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion AbfallNavi/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ public function Update()
$this->SendDebug(__FUNCTION__, $vars);
// write data to variable
foreach ($vars as $key => $time) {
$this->SetValueString((string)$key, $time);
$this->SetValueString((string) $key, $time);
}

// execute Script
Expand Down
10 changes: 5 additions & 5 deletions Abfall_IO/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ protected function UpdateForm($io, $options)
$this->UpdateFormField('fractionID' . $i, 'value', false);
}
break;
// Location selected
// Location selected
case self::ACTION_PLACE:
$this->UpdateFormField('placeID', 'visible', true);
$this->UpdateFormField('placeID', 'value', 'null');
Expand All @@ -710,7 +710,7 @@ protected function UpdateForm($io, $options)
$this->UpdateFormField('fractionID' . $i, 'value', false);
}
break;
// District selected
// District selected
case self::ACTION_DISTRICT:
$this->UpdateFormField('districtID', 'visible', true);
$this->UpdateFormField('districtID', 'value', 'null');
Expand All @@ -729,7 +729,7 @@ protected function UpdateForm($io, $options)
$this->UpdateFormField('fractionID' . $i, 'value', false);
}
break;
// Street selected
// Street selected
case self::ACTION_STREET:
if ($io[self::IO_DISTRICT] == '') {
$this->UpdateFormField('districtID', 'visible', false);
Expand All @@ -750,7 +750,7 @@ protected function UpdateForm($io, $options)
$this->UpdateFormField('fractionID' . $i, 'value', false);
}
break;
// Addon number selected
// Addon number selected
case self::ACTION_ADDON:
$this->UpdateFormField('addonID', 'visible', true);
$this->UpdateFormField('addonID', 'value', 'null');
Expand All @@ -765,7 +765,7 @@ protected function UpdateForm($io, $options)
$this->UpdateFormField('fractionID' . $i, 'value', false);
}
break;
// Fractions selected
// Fractions selected
case self::ACTION_FRACTIONS:
$this->UpdateFormField('labelFraction', 'visible', true);
$f = 1;
Expand Down

0 comments on commit eb82a7c

Please sign in to comment.