From bb589fc29a1e6c37e268473f969b8baba0bada12 Mon Sep 17 00:00:00 2001 From: Justin Richer <jricher@mitre.org> Date: Tue, 13 Nov 2012 18:05:15 -0500 Subject: [PATCH] fixed logic error in script inclusion --- openid-connect-server/src/main/webapp/WEB-INF/tags/footer.tag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openid-connect-server/src/main/webapp/WEB-INF/tags/footer.tag b/openid-connect-server/src/main/webapp/WEB-INF/tags/footer.tag index 271a96949..d521e0e61 100644 --- a/openid-connect-server/src/main/webapp/WEB-INF/tags/footer.tag +++ b/openid-connect-server/src/main/webapp/WEB-INF/tags/footer.tag @@ -9,7 +9,7 @@ <script type="text/javascript" src="resources/js/backbone-min.js"></script> <script type="text/javascript" src="resources/js/backbone.validations.js"></script> <script type="text/javascript" src="resources/js/purl.js"></script> -<c:if test="${js != null || js != ''}"> +<c:if test="${js != null && js != ''}"> <script type="text/javascript" src="${js}"></script> </c:if> </body>