mirror of
https://github.com/danog/phpseclib.git
synced 2024-11-27 04:46:26 +01:00
Replaced else { if ()...} with elseif() {}
This commit is contained in:
parent
699ac0b0e9
commit
b0de383f95
@ -974,11 +974,9 @@ class Net_SSH2
|
||||
|
||||
if (extension_loaded('gmp')) {
|
||||
$ext[] = 'gmp';
|
||||
} else {
|
||||
if (extension_loaded('bcmath')) {
|
||||
} elseif (extension_loaded('bcmath')) {
|
||||
$ext[] = 'bcmath';
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($ext)) {
|
||||
$identifier .= ' (' . implode(', ', $ext) . ')';
|
||||
|
Loading…
Reference in New Issue
Block a user