Skip to content
Snippets Groups Projects
Commit 98e5b7ec authored by Olav Morken's avatar Olav Morken
Browse files

SAML2:SP:initSLO: Fix array reference in template use.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@182 44740490-163a-0410-bde0-09ae8108e29a
parent d761adda
No related branches found
No related tags found
No related merge requests found
......@@ -53,8 +53,8 @@ if (isset($session) ) {
$et = new SimpleSAML_XHTML_Template($config, 'error.php');
$et->$data['message'] = 'Some error occured when trying to issue the logout request to the IdP.';
$et->$data['e'] = $exception;
$et->data['message'] = 'Some error occured when trying to issue the logout request to the IdP.';
$et->data['e'] = $exception;
$et->show();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment