Commit 9ff2c846 authored by catch's avatar catch
Browse files

Issue #3309750 by andypost, Berdir: Fix callable syntax for PHP 8.2 in Views.php

parent 62356c1a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -308,7 +308,7 @@ public static function getViewsAsOptions($views_only = FALSE, $filter = 'all', $
      case 'disabled':
      case 'enabled':
        $filter = ucfirst($filter);
        $views = call_user_func("static::get{$filter}Views");
        $views = call_user_func(static::class . "::get{$filter}Views");
        break;

      default: