Skip to content

Commit

Permalink
close the application as well as the session
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Taylor committed Jan 31, 2016
1 parent 77192f0 commit b4845ab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libraries/joomla/application/web.php
Expand Up @@ -560,8 +560,11 @@ public function redirect($url, $status = 303)
}
}

// Close the application after the redirect.
// Close the session after the redirect to prevent session issues on slow handlers
$this->session->close();

// Close the application after the redirect.
$this->close();
}

/**
Expand Down

0 comments on commit b4845ab

Please sign in to comment.