Closed jamiew0w closed 4 years ago
https://www.php.net/manual/en/migration74.incompatible.php
Serveral fixes from this:
$alert = $alert[0]; $warning = $warning[0]; $success = $success[0];
To this:
$alert = isset($alert[0]) ? $alert[0] : null; $warning = isset($warning[0]) ? $warning[0] : null; $success = isset($success[0]) ? $success[0] : null;
https://www.php.net/manual/en/migration74.incompatible.php
Serveral fixes from this:
To this: