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

noreply at shibboleth.net noreply at shibboleth.net
Sat May 17 06:22:25 EDT 2014


Author: rdw
Date: Sat May 17 06:22:24 2014
New Revision: 5940

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5940&view=rev
Log:
For now, do not try to encode the error messages.

Modified:
    trunk/idp-conf/src/main/resources/views/login.vm

Modified: trunk/idp-conf/src/main/resources/views/login.vm
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/views/login.vm?rev=5940&r1=5939&r2=5940&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/views/login.vm (original)
+++ trunk/idp-conf/src/main/resources/views/login.vm Sat May 17 06:22:24 2014
@@ -13,15 +13,15 @@
     <h2>Testbed Login</h2>
 
 #if ( $authenticationErrorContext && $authenticationErrorContext.getExceptions().size() > 0 )
-		<p>ERROR: $encoder.encodeForHTML($authenticationErrorContext.getExceptions().get(0).getMessage())</p>
+		<p>ERROR: $authenticationErrorContext.getExceptions().get(0).getMessage()</p>
 #end
 
 #if ( $authenticationErrorContext && $authenticationErrorContext.getClassifiedErrors().size() > 0 )
-        <p>Classified errors: $encoder.encodeForHTML($authenticationErrorContext.getClassifiedErrors().toString())</p>
+        <p>Classified errors: $authenticationErrorContext.getClassifiedErrors().toString()</p>
 #end
         
 #if ( $authenticationWarningContext && $authenticationWarningContext.getClassifiedWarnings().size() > 0 )
-        <p>Classified warnings: $encoder.encodeForHTML($authenticationWarningContext.getClassifiedWarnings().toString())</p>
+        <p>Classified warnings: $authenticationWarningContext.getClassifiedWarnings().toString()</p>
 #end
         
         <form action="$flowExecutionUrl" method="post">



More information about the commits mailing list