Skip to content

Commit

Permalink
Fix redirect after login
Browse files Browse the repository at this point in the history
Fixes #4235
  • Loading branch information
vboctor committed Apr 16, 2017
1 parent 65438e0 commit 7fa0c35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/authentication_api.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ function auth_login_page( $p_query_string = '' ) {

if( !is_blank( $p_query_string ) ) {
if( stripos( $t_login_page, '?' ) !== false ) {
$t_login_page .= '&' . $p_query_string;
$t_login_page .= '&' . $p_query_string;
} else {
$t_login_page .= '?' . $p_query_string;
}
Expand Down

0 comments on commit 7fa0c35

Please sign in to comment.