Skip to content

Commit

Permalink
Merge pull request eugenp#171 from Doha2012/master
Browse files Browse the repository at this point in the history
fix user/registration path
  • Loading branch information
Eugen committed Mar 24, 2015
2 parents 6260f49 + 05e5c2b commit b6f5e73
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected void configure(HttpSecurity http) throws Exception {
.antMatchers("/j_spring_security_check*","/login*", "/logout*", "/signin/**", "/signup/**",
"/user/registration*", "/regitrationConfirm*", "/expiredAccount*", "/registration*",
"/badUser*", "/user/resendRegistrationToken*" ,"/forgetPassword*", "/user/resetPassword*",
"/user/changePassword*", "/emailError*", "/resources/**").permitAll()
"/user/changePassword*", "/emailError*", "/resources/**","/old/user/registration*").permitAll()
.antMatchers("/invalidSession*").anonymous()
.anyRequest().authenticated()
.and()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ code="label.badUser.title"></spring:message></title>
${param.message}
</h1>
<br>
<a href="<c:url value="/user/registration" />"><spring:message
<a href="<c:url value="/old/user/registration" />"><spring:message
code="label.form.loginSignUp"></spring:message></a>

<c:if test="${param.expired}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<spring:message code="auth.message.expired"></spring:message>
</h1>
<br>
<a href="<c:url value="/user/registration" />"><spring:message
<a href="<c:url value="/old/user/registration" />"><spring:message
code="label.form.loginSignUp"></spring:message></a>

</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</div>

<br>
<a href="<c:url value="/user/registration" />"><spring:message code="label.form.loginSignUp"></spring:message></a>
<a href="<c:url value="/old/user/registration" />"><spring:message code="label.form.loginSignUp"></spring:message></a>
<br>
<a href="<c:url value="login.html" />"><spring:message code="label.form.loginLink"></spring:message></a>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ ${param.message}

</form>
<br> Current Locale : ${pageContext.response.locale} <br> <a
href="<c:url value="/user/registration" />"><spring:message
href="<c:url value="/old/user/registration" />"><spring:message
code="label.form.loginSignUp"></spring:message></a>
<br><br><br>
<a href="<c:url value="/forgetPassword.html" />"><spring:message
Expand Down

0 comments on commit b6f5e73

Please sign in to comment.