Merge pull request #8 from bissie/array_access_curly_braces

Fix: Curly brace access syntax is deprecated since PHP 7.4
Dieser Commit ist enthalten in:
[OXID-PS] Keywan Ghadami 2021-10-22 17:48:33 +02:00 committet von GitHub
Commit 35e5d631d0
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -50,7 +50,7 @@ class oeCaptcha extends oxSuperCfg
if (!$this->text) {
$this->text = '';
for ($i = 0; $i < $this->macLength; $i++) {
$this->text .= strtolower($this->macChars{rand(0, strlen($this->macChars) - 1)});
$this->text .= strtolower($this->macChars[rand(0, strlen($this->macChars) - 1)]);
}
}