Skip to content
Snippets Groups Projects
Commit 6535ef87 authored by catch's avatar catch
Browse files

Issue #3485296 by bradjones1, alexpott, emptyvoid, longwave, sidgrafix,...

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 22e9e847)
parent 681dfb31
No related branches found
No related tags found
1 merge request!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4
Pipeline #342487 passed with warnings
Pipeline: drupal

#342525

    Pipeline: drupal

    #342515

      Pipeline: drupal

      #342506

        +1
        ...@@ -13,7 +13,8 @@ ...@@ -13,7 +13,8 @@
        class Yaml extends ComponentYaml { class Yaml extends ComponentYaml {
        public static function decode($raw) { 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); return $class::decode($raw);
        } }
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment