Skip to content

Commit 453e7d8

Browse files
committedNov 24, 2011
Fix syntax error
Introduced in 6a9adc6, forgot to git add before commit... Fixes #13060
1 parent 6a9adc6 commit 453e7d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎login_page.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
// If user is already authenticated and not anonymous
7070
if( auth_is_user_authenticated() && !current_user_is_anonymous() ) {
7171
// If return URL is specified redirect to it; otherwise use default page
72-
if( !is_blank( $f_return ) {
72+
if( !is_blank( $f_return ) ) {
7373
print_header_redirect( $f_return, false, false, true );
7474
}
7575
else {

0 commit comments

Comments
 (0)
Please sign in to comment.