From d505abf31c4a86ead3c4ba98c7b8462ae39fecd3 Mon Sep 17 00:00:00 2001 From: devjin Date: Wed, 22 Aug 2012 05:30:05 +0000 Subject: [PATCH] issue 2264 fixed the error that the layout option didn't save when used to 'radio button' type. git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.3.2@11055 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/layout/tpl/js/layout_modify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/layout/tpl/js/layout_modify.js b/modules/layout/tpl/js/layout_modify.js index fbf1f7214..5cbd8533d 100644 --- a/modules/layout/tpl/js/layout_modify.js +++ b/modules/layout/tpl/js/layout_modify.js @@ -1,6 +1,6 @@ function doSubmitConfig() { - var $forms = jQuery('#layout_config').find('input[name][type="hidden"], input[name][type="text"], input[name][type="checkbox"]:checked, select[name], textarea[name]'); + var $forms = jQuery('#layout_config').find('input[name][type="hidden"], input[name][type="text"], input[name][type="checkbox"]:checked, select[name], textarea[name], input[name][type="radio"]:checked'); var $configForm = jQuery('#config_form'); var $container = $configForm.children('div'); $container.empty();