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

core/authenticate.php: Do not show session lifetime or session size.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2595 44740490-163a-0410-bde0-09ae8108e29a
parent dd51a7f9
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,6 @@
$config = SimpleSAML_Configuration::getInstance();
$session = SimpleSAML_Session::getInstance();
if (!array_key_exists('as', $_REQUEST)) {
$t = new SimpleSAML_XHTML_Template($config, 'core:authsource_list.tpl.php');
......@@ -51,8 +50,6 @@ $attributes = $as->getAttributes();
$t = new SimpleSAML_XHTML_Template($config, 'status.php', 'attributes');
$t->data['header'] = '{status:header_saml20_sp}';
$t->data['remaining'] = $session->remainingTime();
$t->data['sessionsize'] = $session->getSize();
$t->data['attributes'] = $attributes;
$t->data['logouturl'] = SimpleSAML_Utilities::selfURLNoQuery() . '?logout';
$t->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