You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should not use @ in the code but rather make sure errors are reported.
For instance, in admin/tmpl/check/default.php: if (@$data['databasemigratestatus'] == '0')
should be replaced with something like if (isset($data['databasemigratestatus']) && $data['databasemigratestatus'] == '0')
The text was updated successfully, but these errors were encountered:
We should not use @ in the code but rather make sure errors are reported.
For instance, in admin/tmpl/check/default.php:
if (@$data['databasemigratestatus'] == '0')
should be replaced with something like
if (isset($data['databasemigratestatus']) && $data['databasemigratestatus'] == '0')
The text was updated successfully, but these errors were encountered: