From 6535ef87512f9a9a89098824c2a8b884274f142e Mon Sep 17 00:00:00 2001
From: catch <6915-catch@users.noreply.drupalcode.org>
Date: Mon, 18 Nov 2024 17:30:26 +0000
Subject: [PATCH] Issue #3485296 by bradjones1, alexpott, emptyvoid, longwave,
 sidgrafix, dmitry.korhov: Regression: Deprecation of `yaml_parser_class`
 setting in 10.3 breaks sites < 11.0

(cherry picked from commit 22e9e847ad4acb5908f4d96d7a08a305270abeca)
---
 core/lib/Drupal/Core/Serialization/Yaml.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/core/lib/Drupal/Core/Serialization/Yaml.php b/core/lib/Drupal/Core/Serialization/Yaml.php
index 6e7b37cf7a8d..b17b57302b91 100644
--- a/core/lib/Drupal/Core/Serialization/Yaml.php
+++ b/core/lib/Drupal/Core/Serialization/Yaml.php
@@ -13,7 +13,8 @@
 class Yaml extends ComponentYaml {
 
   public static function decode($raw) {
-    if ($class = Settings::get('yaml_parser_class')) {
+    $class = Settings::get('yaml_parser_class');
+    if ($class && $class !== TRUE) {
       return $class::decode($raw);
     }
 
-- 
GitLab