From a7f43a4c6435c534eda62793d33088bd8aece2f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no> Date: Mon, 11 Apr 2011 09:17:37 +0000 Subject: [PATCH] Fix problem with entityID > subID with discoresponse git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2808 44740490-163a-0410-bde0-09ae8108e29a --- modules/discojuice/www/discojuice/discojuice.control.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/discojuice/www/discojuice/discojuice.control.js b/modules/discojuice/www/discojuice/discojuice.control.js index 113ae267e..82fcc0e40 100644 --- a/modules/discojuice/www/discojuice/discojuice.control.js +++ b/modules/discojuice/www/discojuice/discojuice.control.js @@ -99,8 +99,8 @@ DiscoJuice.Control = { } }, - "discoResponse": function(entityID, sender) { - this.parent.Utils.log('DiscoResponse Received from [' + sender + ']'); + "discoResponse": function(sender, entityID, subID) { + this.parent.Utils.log('DiscoResponse Received from [' + sender + '] : ' + entityID + ' > ' + subID); this.setWeight(entityID, -100); this.prepareData(); }, -- GitLab