Hi,
We have applied the changes to avoid such Notices on the lines you mentioned.
If you could send the patch you have applied we can compare it to make sure we did not miss anything. Please send the patch file via support ticket at :
https://softaculous.deskuss.com/open.php?topicId=16
Also we did fix the Notices reported in the other topics opened earlier but it seems somehow we are missing few each time.
We have made changes to our dev environment so we see the Notices on our server before we release the new version so this does not happen in the future.
Line 1160:
for ($j = 0; $j < $x_length; ++$j) { // ie. $i = 0
if (array_key_exists($j, $x_value) && array_key_exists(0, $y_value))
{
$temp = $x_value[$j] * $y_value[0] + $carry; // $product_value[$k] == 0
$carry = (int) ($temp / 0x4000000);
$product_value[$j] = (int) ($temp - 0x4000000 * $carry);
}
}
Line 153x:
for ($i = count($dividend) - 1; $i >= 0; --$i) {
$temp = 0x4000000 * $carry + ((array_key_exists($i, $dividend)) ? $dividend[$i] : 0);
$result[$i] = (int) ($temp / $divisor);
$carry = (int) ($temp - $divisor * $result[$i]);
}
Line 34xx ( in function _trim):
for ($i = count($value) - 1; $i >= 0; --$i) {
if (array_key_exists($i, $value))
{
if ($value[$i] ) {
break;
}
unset($value[$i]);
}
}
Thank you!
We have updated the changes in our local repo and it will be included in the next version of Loginizer.
Hi,
We have released Loginizer v1.6.5 which resolves the issue.
Thank you for reporting the issue.