Merge branch 'QA_4_6'

This commit is contained in:
Michal Čihař 2017-01-25 10:07:33 +01:00
commit fe39fbfe1a

View File

@ -719,7 +719,10 @@ class AuthenticationCookie extends AuthenticationPlugin
public function reportSSLErrors()
{
while (($ssl_err = openssl_error_string()) !== false) {
trigger_error('OpenSSL error: ' . $ssl_err, E_USER_ERROR);
trigger_error(
_('OpenSSL error when manipulating with cookies:') . ' ' . $ssl_err,
E_USER_ERROR
);
}
}