From 26299789e772dedf80429440ca1fd10281f37087 Mon Sep 17 00:00:00 2001 From: Rudy Montoya Rodriguez Date: Mon, 23 Nov 2015 15:25:56 +0100 Subject: [PATCH 1/2] Add attribute data-context In 2.6.x options got class irrelevant due to missing data-context --- data-sources/datasource.storage.php | 1 + 1 file changed, 1 insertion(+) diff --git a/data-sources/datasource.storage.php b/data-sources/datasource.storage.php index e2c9eb6..695ee6e 100644 --- a/data-sources/datasource.storage.php +++ b/data-sources/datasource.storage.php @@ -55,6 +55,7 @@ public static function buildEditor(XMLElement $wrapper, array &$errors = array() $fieldset = new XMLElement('fieldset'); $fieldset->setAttribute('class', 'settings contextual ' . __CLASS__); + $fieldset->setAttribute('data-context', 'storage'); $fieldset->appendChild(new XMLElement('legend', self::getName())); // Groups From 11d6552324cd5fcab5cf4d6ded65e8a08852be18 Mon Sep 17 00:00:00 2001 From: Rudy Montoya Rodriguez Date: Mon, 23 Nov 2015 15:33:26 +0100 Subject: [PATCH 2/2] Update extension.meta.xml --- extension.meta.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/extension.meta.xml b/extension.meta.xml index a7c976d..3d4c605 100644 --- a/extension.meta.xml +++ b/extension.meta.xml @@ -14,6 +14,9 @@ + + - Bug fix, add attribute data-context to display options in symphony 2.6.x + - Refactored storage class; storage can actually be unset now, fixes cookie issues.