Skip to content
Snippets Groups Projects
Commit 445fe267 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Fixed logic error in if condition.

parent 31446d38
No related merge requests found
...@@ -88,7 +88,7 @@ public class LoginController extends AbstractController { ...@@ -88,7 +88,7 @@ public class LoginController extends AbstractController {
if (referer == null) { if (referer == null) {
/* Use a url from a request parameter as referer as long as the url is not absolute (to prevent /* Use a url from a request parameter as referer as long as the url is not absolute (to prevent
* abuse of the redirection). */ * abuse of the redirection). */
if (null == (referer = forcedReferer) && UrlUtils.isAbsoluteUrl(referer)) { if (null == (referer = forcedReferer) || UrlUtils.isAbsoluteUrl(referer)) {
referer = "/"; referer = "/";
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment