Skip to content

Commit

Permalink
Problem mit NULL-Value in Layer::verityLang behoben. (#162)
Browse files Browse the repository at this point in the history
* verifyLang-value auf NULL prüfen

* Release 2.3.1
  • Loading branch information
christophboecker authored Jul 28, 2024
1 parent 03f4a3e commit d7dc390
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 25-07-2024 2.3.1

- BugFix
- Behebt einen Fehler beim Speichern einer Karte (Layer), die ohne
Label-Angabe ist. (danke @dtpop) (#162),


## 01-07-2024 2.3.0

- Anpassungen für YForm ab 4.2.1
Expand Down
7 changes: 5 additions & 2 deletions lib/Layer.php
Original file line number Diff line number Diff line change
Expand Up @@ -312,19 +312,22 @@ public static function verifyUrl($field, $value, $return, $self, $elements): boo
* Theoretisch können Sprachen mehrfach belegt werden. Hier kontrollieren, dass es nicht passiert
* Die Parameter sind so belegt:
* - Feldname ('lang')
* - der aktuelle Werte für 'lang' (JSON-String)
* - der aktuelle Werte für 'lang' (je nach YForm-Version JSON-String, array oder null)
* - Rückgabewert als Vorbelegung (sollte leer sein), ignorieren
* - Instanz der aktiven Validator-Klasse
* - Array mit einem Element: Instanz des Feldes 'lang'
*
* @param string $field
* @param string|array<array<string,string>> $value
* @param string|array<array<string,string>>|null $value
* @param string $return
* @param rex_yform_validate_customfunction $self
* @param array<string,rex_yform_value_abstract> $elements
*/
public static function verifyLang($field, $value, $return, $self, $elements): bool
{
// wenn keine Sprachen angegeben sind kann auch null kommen.
$value = $value ?? '';

/**
* Kompatibilität zu YForm < 4.2.0
* 4.2.0 lieber nicht benutzen!
Expand Down
2 changes: 1 addition & 1 deletion package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package: geolocation
version: '2.3.0'
version: '2.3.1'
author: Friends Of REDAXO
supportpage: https://github.com/FriendsOfREDAXO/geolocation

Expand Down

0 comments on commit d7dc390

Please sign in to comment.