Skip to content

Commit

Permalink
Fix curly braces is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
remicollet committed Oct 1, 2019
1 parent 3164f15 commit 4b21f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Horde/Crypt/Blowfish/Php/Base.php
Expand Up @@ -328,7 +328,7 @@ public function __construct($key)
for ($i = 0; $i < 18; ++$i) {
$data = 0;
for ($j = 4; $j > 0; --$j) {
$data = $data << 8 | ord($key{$k});
$data = $data << 8 | ord($key[$k]);
$k = ($k + 1) % $len;
}
$this->_P[$i] ^= $data;
Expand Down

0 comments on commit 4b21f78

Please sign in to comment.