Commit cb6b9c70 authored by Andrey Postnikov's avatar Andrey Postnikov Committed by Andrey Postnikov
Browse files

Issue #3279753 by andypost: Fix PHP 8.1 support

parent 28a6cfa5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -173,7 +173,7 @@ class Scanner {
          // Check if this field has several properties.
          $item = explode('/', $column);
          $fieldname = $item[0];
          $fieldkey = $item[1] ?: NULL;
          $fieldkey = $item[1] ?? NULL;
          if (isset($fields_info[$fieldname])) {
            $field_info = $fields_info[$fieldname];
          }