Skip to content

Commit

Permalink
Item12180: Fix login issues, part 2
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@16068 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
TimotheLitt authored and TimotheLitt committed Nov 21, 2012
1 parent bee3d43 commit 06f736e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions core/lib/Foswiki/Configure/Feedback.pm
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,19 @@ feedback request has been received.
# feedback tags along with the main UI, but has a small window
# for while login screens are being produced.

if ( loggedIn($session)
|| $badLSC
|| $query->auth_type
|| ( $query->param('FeedbackRequest') || '' ) eq
'{ConfigureGUI}{Modals}{Login}feedreq1' )
{
if ( loggedIn($session) || $badLSC || $query->auth_type ) {
refreshLoggedIn($session);

return;
}

if ( ( $query->param('FeedbackRequest') || '' ) eq
'{ConfigureGUI}{Modals}{Login}feedreq1' )
{
refreshSession($session);
return;
}

# Allow re-authenticating

refreshSession($session);
Expand Down

0 comments on commit 06f736e

Please sign in to comment.