From 20503012d0f6bc041fa90d486f9d4b35a0cd2ec8 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 24 Oct 2019 14:14:51 +0200 Subject: [PATCH] SSO: Fix PHP Fatal error: Call to undefined method kolab_sso_openidc::get_maram() --- plugins/kolab_sso/drivers/oauth2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/kolab_sso/drivers/oauth2.php b/plugins/kolab_sso/drivers/oauth2.php index 716cee42..3dab39c5 100644 --- a/plugins/kolab_sso/drivers/oauth2.php +++ b/plugins/kolab_sso/drivers/oauth2.php @@ -311,7 +311,7 @@ class kolab_sso_oauth2 */ protected function validate_token_payload($payload) { - $items = $this->get_maram('validate_items'); + $items = $this->get_param('validate_items'); $email = $this->config['debug_email'] ?: $payload->{$this->get_param('user_field')}; if (empty($email)) {