Skip to content
Snippets Groups Projects
Unverified Commit 45ca12ea 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

(cherry picked from commit 4cfe1582)
parent efd43372
No related branches found
No related tags found
2 merge requests!12802Issue #3537193 by opauwlo: Add enable absolute path option for CKEditor5 image uploads,!12523Issue #3493858 by vidorado, xavier.masson, smustgrave: Extend ViewsBlockBase...
Pipeline #530811 passed with warnings
Pipeline: drupal

#530873

    Pipeline: drupal

    #530869

      Pipeline: drupal

      #530863

        +7
        ......@@ -273,7 +273,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