[java-identity-provider COMMIT] /trunk/idp-conf/src/main/resources/system/views/client-storage/client-storage-write.vm
noreply at shibboleth.net
noreply at shibboleth.net
Fri Aug 28 15:31:54 EDT 2015
Author: scantor
Date: Fri Aug 28 15:31:54 2015
New Revision: 7711
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7711&view=rev
Log:
Fix method names.
Modified:
trunk/idp-conf/src/main/resources/system/views/client-storage/client-storage-write.vm
Modified: trunk/idp-conf/src/main/resources/system/views/client-storage/client-storage-write.vm
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/views/client-storage/client-storage-write.vm?rev=7711&r1=7710&r2=7711&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/views/client-storage/client-storage-write.vm (original)
+++ trunk/idp-conf/src/main/resources/system/views/client-storage/client-storage-write.vm Fri Aug 28 15:31:54 2015
@@ -26,7 +26,7 @@
function doSave() {
#foreach ($op in $saveContext.getStorageOperations())
- writeLocalStorage("$op.getStorageKey()", "$op.getStorageValue()");
+ writeLocalStorage("$op.getKey()", "$op.getValue()");
#end
document.form1.submit();
}
@@ -46,8 +46,8 @@
</noscript>
<form name="form1" action="${flowExecutionUrl}" method="post">
#foreach ($op in $saveContext.getStorageOperations())
- <input name="shib_idp_ls_exception.$op.getStorageKey()" type="hidden" />
- <input name="shib_idp_ls_success.$op.getStorageKey()" type="hidden" value="false" />
+ <input name="shib_idp_ls_exception.$op.getKey()" type="hidden" />
+ <input name="shib_idp_ls_success.$op.getKey()" type="hidden" value="false" />
#end
<input name="_eventId_proceed" type="hidden" />
<noscript>
More information about the commits
mailing list