diff options
author | thomascube <thomas@roundcube.net> | 2011-07-30 15:32:13 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-07-30 15:32:13 +0000 |
commit | fcc7f861b170596c6970aecb1ddc87a3567b112f (patch) | |
tree | db081b780e3d6c144ef70b190b724af3d7e4f2f9 /program/js | |
parent | a1640053b9dbe7d8b3bd9421d74127da8e615ad2 (diff) |
Log session validation errors; keep error message when redirecting to login after session error
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index da445a39c..a9ed9adbe 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -5153,7 +5153,8 @@ function rcube_webmail() obj.click(function() { return ref.hide_message(obj); }); } - window.setTimeout(function() { ref.hide_message(id, type == 'loading'); }, timeout); + if (timeout > 0) + window.setTimeout(function() { ref.hide_message(id, type == 'loading'); }, timeout); return id; }; |