1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-11-26 20:24:39 +01:00

fix compat with 5.3

This commit is contained in:
Remi Collet 2019-06-21 09:25:24 +02:00
parent d2085db7b7
commit 25469cb98f

View File

@ -1561,7 +1561,7 @@ class BigInteger
$temp_value = array($quotient_value[$q_index]);
$temp = $temp->multiply($y);
$temp_value = &$temp->value;
if ($temp_value !== []) {
if ($temp_value !== array()) {
$temp_value = array_merge($adjust, $temp_value);
}