Commit b3b6c07d authored by catch's avatar catch
Browse files

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

(cherry picked from commit 9ff2c846)
parent 9f1f766d
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: