Compare commits

...

2 Commits

Author SHA1 Message Date
Clemens Schwaighofer
7a4c905ae3 Bug fix in RandomKey validateRandomKeyData() 2026-01-14 15:10:12 +09:00
Clemens Schwaighofer
0531b29749 Release: v9.39.0 2026-01-14 13:23:21 +09:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
9.38.1
9.39.0

View File

@@ -49,7 +49,7 @@ class RandomKey
private static function validateRandomKeyData(array ...$key_range): string
{
$key_character_range = Strings::buildCharStringFromLists(...$key_range);
if (strlen(self::$key_character_range) <= 1) {
if (strlen($key_character_range) <= 1) {
return '';
}
return $key_character_range;