[java-identity-provider COMMIT] /trunk/idp-conf/src/main/resources/system/views/logout/propagate.vm

noreply at shibboleth.net noreply at shibboleth.net
Wed Nov 4 20:51:54 EST 2015


Author: scantor
Date: Wed Nov  4 20:51:54 2015
New Revision: 7940

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7940&view=rev
Log:
IDP-224 - Fix layer of indirection in status checking logic.

Modified:
    trunk/idp-conf/src/main/resources/system/views/logout/propagate.vm

Modified: trunk/idp-conf/src/main/resources/system/views/logout/propagate.vm
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/views/logout/propagate.vm?rev=7940&r1=7939&r2=7940&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/views/logout/propagate.vm	(original)
+++ trunk/idp-conf/src/main/resources/system/views/logout/propagate.vm	Wed Nov  4 20:51:54 2015
@@ -43,7 +43,7 @@
         function check_status() {
             // Check every property of the object.
             for (flag in this) {
-                if (!flag) {
+                if (!this[flag]) {
                     return false;
                 }
             }



More information about the commits mailing list