- Fix authentication when submitting form with existing session (#1485679)

release-0.6
alecpl 16 years ago
parent 478c7c63d8
commit 0129d7c914

@ -5,6 +5,7 @@ CHANGELOG RoundCube Webmail
----------
- Fix problems with backslash as IMAP hierarchy delimiter (#1484467)
- Secure vcard export by getting rid of preg's 'e' modifier use (#1485689)
- Fix authentication when submitting form with existing session (#1485679)
2009/01/15 (alec)
----------

@ -72,6 +72,10 @@ if ($RCMAIL->action=='error' && !empty($_GET['_code'])) {
// try to log in
if ($RCMAIL->action=='login' && $RCMAIL->task=='mail') {
// purge the session in case of new login when a session already exists
$RCMAIL->kill_session();
// set IMAP host
$host = $RCMAIL->autoselect_host();
// check if client supports cookies

Loading…
Cancel
Save