summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-07-30 15:32:13 +0000
committerthomascube <thomas@roundcube.net>2011-07-30 15:32:13 +0000
commitfcc7f861b170596c6970aecb1ddc87a3567b112f (patch)
treedb081b780e3d6c144ef70b190b724af3d7e4f2f9 /program/js
parenta1640053b9dbe7d8b3bd9421d74127da8e615ad2 (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.js3
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;
};