Changeset 619


Ignore:
Timestamp:
Nov 11, 2017 1:15:00 PM (7 years ago)
Author:
anonymous
Message:

Update messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Auth_SQL.inc.php

    r611 r619  
    703703                    // Only raise message if last session is less than 12 hours old.
    704704                    // Notify user why they were logged out if they haven't yet been given a reason.
    705                     $user_notified || $app->raiseMsg(sprintf(_("For your safety we logged you out after being idle for %s. Please log in again."), humanTime($this->_params['idle_timeout'], 'hour', '%01.0f')), MSG_NOTICE, __FILE__, __LINE__);
     705                    $user_notified || $app->raiseMsg(sprintf(_("For your security we logged you out after being idle for %s. Please log in again."), humanTime($this->_params['idle_timeout'], 'hour', '%01.0f')), MSG_NOTICE, __FILE__, __LINE__);
    706706                    $user_notified = true;
    707707                }
     
    715715                    $expire_reasons[] = sprintf('remote_ip not matched (%s != %s)', $_SESSION['_auth_sql'][$this->_ns]['remote_ip'], getRemoteAddr());
    716716                    // Notify user why they were logged out if they haven't yet been given a reason.
    717                     $user_notified || $app->raiseMsg(sprintf(_("For your safety we logged you out because your IP address has changed. Please log in again."), null), MSG_NOTICE, __FILE__, __LINE__);
     717                    $user_notified || $app->raiseMsg(sprintf(_("For your security we logged you out because your IP address has changed. Please log in again."), null), MSG_NOTICE, __FILE__, __LINE__);
    718718                    $user_notified = true;
    719719                } else {
Note: See TracChangeset for help on using the changeset viewer.