From 7bc86b001aa64ed958b4c4d213a07346dfba7cc6 Mon Sep 17 00:00:00 2001 From: Thijs Kinkhorst <thijs@kinkhorst.com> Date: Thu, 23 Nov 2017 15:21:40 +0000 Subject: [PATCH] Bugfix: authX509 error messages were broken. Changes to the translation system made all authX509 messages show as "Not translated", because the new mapping of error codes to error messages was not passed to the template. --- modules/authX509/lib/Auth/Source/X509userCert.php | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/authX509/lib/Auth/Source/X509userCert.php b/modules/authX509/lib/Auth/Source/X509userCert.php index e92f0c387..36f93a48f 100644 --- a/modules/authX509/lib/Auth/Source/X509userCert.php +++ b/modules/authX509/lib/Auth/Source/X509userCert.php @@ -72,6 +72,7 @@ class sspmod_authX509_Auth_Source_X509userCert extends SimpleSAML_Auth_Source $t = new SimpleSAML_XHTML_Template($config, 'authX509:X509error.php'); $t->data['errorcode'] = $state['authX509.error']; + $t->data['errorcodes'] = SimpleSAML\Error\ErrorCodes::getAllErrorCodeMessages(); $t->show(); exit(); -- GitLab