From 5543a2da3aeecb3cd7a2d7161ca0a0a7a61e9cee Mon Sep 17 00:00:00 2001 From: juanmanuelr Date: Thu, 24 Nov 2011 15:48:21 +0000 Subject: [PATCH] 2011-11-24 Juan Manuel Ramon * godmode/setup/setup.php: Added confirmation when "Use Enterprise ACL System" is checked. Fixes: #3438190 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5163 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 7 +++++++ pandora_console/godmode/setup/setup.php | 10 ++++++++++ 2 files changed, 17 insertions(+) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 9192e97197..ea79ba9c76 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2011-11-24 Juan Manuel Ramon + + * godmode/setup/setup.php: Added confirmation when "Use Enterprise + ACL System" is checked. + + Fixes: #3438190 + 2011-11-24 Juan Manuel Ramon * operation/menu.php: Fixed a wrong sec2 tag that makes enterprise diff --git a/pandora_console/godmode/setup/setup.php b/pandora_console/godmode/setup/setup.php index 0cd025bf51..e1165d2f87 100644 --- a/pandora_console/godmode/setup/setup.php +++ b/pandora_console/godmode/setup/setup.php @@ -214,6 +214,16 @@ function replaySound(type) { $('#layer_sound_' + type).html(""); } } + + +$(document).ready (function () { + $("#radiobtn0011").click(function(){ + flag = $("#radiobtn0011").is(':checked'); + if (flag == true){ + + } + }); +});