[cvs] expresso commit by lhamel: add missing quotes, remove unused
JCorporate Ltd
jcorp at jcorporate.com
Wed Feb 8 04:31:19 UTC 2006
Log Message:
-----------
add missing quotes, remove unused
Modified Files:
--------------
expresso/expresso-web/expresso/jsp/register:
redirect.jsp
Revision Data
-------------
Index: redirect.jsp
===================================================================
RCS file: /home/javacorp/.cvs/expresso/expresso/expresso-web/expresso/jsp/register/redirect.jsp,v
retrieving revision 1.3
retrieving revision 1.4
diff -Lexpresso-web/expresso/jsp/register/redirect.jsp -Lexpresso-web/expresso/jsp/register/redirect.jsp -u -r1.3 -r1.4
--- expresso-web/expresso/jsp/register/redirect.jsp
+++ expresso-web/expresso/jsp/register/redirect.jsp
@@ -1,22 +1,4 @@
<%@ page language="java" errorPage="/expresso/error.jsp" %>
-<%@ taglib uri="/WEB-INF/tld/expresso.tld" prefix="expresso" %>
-<%@ taglib uri="/WEB-INF/tld/expresso-bean.tld" prefix="bean" %>
-<%@ taglib uri="/WEB-INF/tld/expresso-html.tld" prefix="html" %>
-<%@ taglib uri="/WEB-INF/tld/expresso-logic.tld" prefix="logic" %>
-<%@ taglib uri="/WEB-INF/tld/struts-bean.tld" prefix="struts-bean" %>
-<%@ taglib uri="/WEB-INF/tld/struts-html.tld" prefix="struts-html" %>
-<%@ taglib uri="/WEB-INF/tld/struts-logic.tld" prefix="struts-logic" %>
-<%@ page import="com.jcorporate.expresso.core.controller.*" %>
-<%@ page import="com.jcorporate.expresso.core.dbobj.*" %>
-<%@ page import="com.jcorporate.expresso.core.jsdkapi.GenericSession" %>
-<%@ page import="com.jcorporate.expresso.core.misc.ConfigManager" %>
-<%@ page import="com.jcorporate.expresso.core.misc.StringUtil" %>
-<%@ page import="com.jcorporate.expresso.core.servlet.CheckLogin" %>
-<%@ page import="com.jcorporate.expresso.services.dbobj.*" %>
-<%@ page import="java.util.*" %>
-<%@ page import="java.io.*" %>
-<%@ page import="org.apache.struts.action.*" %>
-<%@ include file="standard.inc" %>
<%
String destination = (String) request.getAttribute("destination");
%>
@@ -27,11 +9,11 @@
<%-- we use the refresh metatag because we need to plant a cookie
after successful login; otherwise, we'd do a more simple 301
redirection code --%>
-<META http-equiv="refresh" content="0; url=<%=destination%>">
+<META http-equiv="refresh" content="0; url=<%=destination%>" >
</head>
<body>
Your browser should redirected to <br><br>
-<a href=<%=destination%>><%=destination%></a> momentarily...
+<a href="<%=destination%>"><%=destination%></a> momentarily...
</body>
</html>
More information about the cvs
mailing list