From 408ab4e1984c4d1b6d3683ca04b26f5f076a2a8c Mon Sep 17 00:00:00 2001 From: Andjelko Horvat <comel@vingd.com> Date: Tue, 6 Dec 2011 16:45:28 +0000 Subject: [PATCH] SimpleSAML_Error_Error: change errors.show_function to array. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2997 44740490-163a-0410-bde0-09ae8108e29a --- config-templates/config.php | 2 +- lib/SimpleSAML/Error/Error.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config-templates/config.php b/config-templates/config.php index e5bc789bd..a48e7b2ea 100644 --- a/config-templates/config.php +++ b/config-templates/config.php @@ -54,7 +54,7 @@ $config = array ( * See docs/simplesamlphp-errorhandling.txt for function code example. * * Example: - * 'errors.show_function' => 'sspmod_exmaple_Error_Show::show', + * 'errors.show_function' => array('sspmod_example_Error_Show', 'show'), */ /** diff --git a/lib/SimpleSAML/Error/Error.php b/lib/SimpleSAML/Error/Error.php index f31636e77..3772f8869 100644 --- a/lib/SimpleSAML/Error/Error.php +++ b/lib/SimpleSAML/Error/Error.php @@ -242,7 +242,7 @@ class SimpleSAML_Error_Error extends SimpleSAML_Error_Exception { $data['email'] = ''; } - $show_function = $config->getString('errors.show_function', NULL); + $show_function = $config->getArray('errors.show_function', NULL); if (isset($show_function)) { assert('is_callable($show_function)'); call_user_func($show_function, $config, $data); -- GitLab