Shorten logout message

This commit is contained in:
Hillel Coren 2017-06-13 16:27:05 +03:00
parent b879d3ea9d
commit 1921d0351e
2 changed files with 1 additions and 2 deletions

View File

@ -2096,7 +2096,6 @@ $LANG = array(
'view_statement' => 'View Statement', 'view_statement' => 'View Statement',
'statement' => 'Statement', 'statement' => 'Statement',
'statement_date' => 'Statement Date', 'statement_date' => 'Statement Date',
'inactivity_logout' => 'Due to inactivity, you have been automatically logged out.',
'mark_active' => 'Mark Active', 'mark_active' => 'Mark Active',
'send_automatically' => 'Send Automatically', 'send_automatically' => 'Send Automatically',
'initial_email' => 'Initial Email', 'initial_email' => 'Initial Email',

View File

@ -103,7 +103,7 @@
$(function() { $(function() {
// auto-logout after 8 hours // auto-logout after 8 hours
window.setTimeout(function() { window.setTimeout(function() {
window.location = '{{ URL::to('/logout?reason=inactivity') }}'; window.location = '{{ URL::to('/logout?reason=inactive') }}';
}, {{ 1000 * env('AUTO_LOGOUT_SECONDS', (60 * 60 * 8)) }}); }, {{ 1000 * env('AUTO_LOGOUT_SECONDS', (60 * 60 * 8)) }});
// auto-hide status alerts // auto-hide status alerts