From ee96aa26d883ae4ae1c22f55cdeca179dd94dcba Mon Sep 17 00:00:00 2001
From: mattpiwik <matthieu.aubry@gmail.com>
Date: Fri, 27 Jul 2012 02:42:31 +0000
Subject: [PATCH] Reverting part of [6554] - It is semantically incorrect (even
 for tests, since it affects core code), to duplicate the Token hash logic
 which can be changed by plugins. The code to hash is in
 Piwik_Login.getHashTokenAuth

git-svn-id: http://dev.piwik.org/svn/trunk@6572 59fd770c-687e-43c8-a1e3-f5a4ff64c105
---
 core/Access.php | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/core/Access.php b/core/Access.php
index 4c5d397f24..acf6980181 100644
--- a/core/Access.php
+++ b/core/Access.php
@@ -189,8 +189,6 @@ class Piwik_Access
 	{
 		$this->isSuperUser = true;
 		$this->idsitesByAccess['superuser'] = Piwik_SitesManager_API::getInstance()->getAllSitesId();
-		$config = Piwik_Config::getInstance();
-		$this->token_auth = md5($config->superuser['login'].$config->superuser['password']);
 		return true;
 	}
 
@@ -210,7 +208,6 @@ class Piwik_Access
 		{
 			$this->isSuperUser = false;
 			$this->idsitesByAccess['superuser'] = array();
-			$this->token_auth = null;
 		}
 	}
 	
-- 
GitLab