Commit 737ea059 authored by Chris Graham's avatar Chris Graham
Browse files

Fixed MANTIS-4031 (PHP 7.4 error on some do-next screens ("Trying to access...

Fixed MANTIS-4031 (PHP 7.4 error on some do-next screens ("Trying to access array offset on value of type null"))
parent 313da51f
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -328,6 +328,10 @@ function _do_next_section($list, $title, $entry_content_type = null, $category_c

    $num_siblings = 0;
    foreach ($list as $i => $_option) {
        if ($_option === null) {
            continue;
        }

        $url = $_option[1];
        if (!is_null($url)) {
            $zone = array_key_exists(2, $url) ? $url[2] : '';