From a779ac6cbc0335bb47304beec0675ba5ca6116ad Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Mon, 25 Oct 2010 11:44:11 +0000
Subject: [PATCH] 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
---
 modules/core/www/authenticate.php | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/modules/core/www/authenticate.php b/modules/core/www/authenticate.php
index 2a0e23544..f6f216224 100644
--- a/modules/core/www/authenticate.php
+++ b/modules/core/www/authenticate.php
@@ -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();
-- 
GitLab