Skip to content
Snippets Groups Projects
Unverified Commit 4cfe1582 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3525174 by benjifisher, smustgrave, greggles, catch, larowlan, mcdruid:...

Issue #3525174 by benjifisher, smustgrave, greggles, catch, larowlan, mcdruid: Clean up unserialize() in the config system
parent 743f5aa2
No related branches found
No related tags found
3 merge requests!12628#3524738 backport without deprecation,!12477#3532243: JSON support status during updates,!5423Draft: Resolve #3329907 "Test2"
Pipeline #529857 passed with warnings
Pipeline: drupal

#529893

    Pipeline: drupal

    #529884

      Pipeline: drupal

      #529880

        +4
        ......@@ -272,7 +272,7 @@ public function encode($data) {
        * be unserialized.
        */
        public function decode($raw) {
        $data = @unserialize($raw);
        $data = @unserialize($raw, ['allowed_classes' => FALSE]);
        return is_array($data) ? $data : FALSE;
        }
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment