Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Login/Login.php')
-rw-r--r--plugins/Login/Login.php38
1 files changed, 19 insertions, 19 deletions
diff --git a/plugins/Login/Login.php b/plugins/Login/Login.php
index 55adbd6817..6d7dd50f30 100644
--- a/plugins/Login/Login.php
+++ b/plugins/Login/Login.php
@@ -1,20 +1,20 @@
-<?php
-/**
- * Piwik - Open source web analytics
- *
- * @link http://piwik.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
- * @version $Id$
- *
- * @package Piwik_Login
- */
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
+ * @version $Id$
+ *
+ * @package Piwik_Login
+ */
require "Login/Controller.php";
require "Cookie.php";
-
-
-/**
- *
- * @package Piwik_Login
+
+
+/**
+ *
+ * @package Piwik_Login
*/
class Piwik_Login extends Piwik_Plugin
{
@@ -69,11 +69,11 @@ class Piwik_Login extends Piwik_Plugin
$authCookieExpiry = time() + 3600;
$authCookie = new Piwik_Cookie($authCookieName, $authCookieExpiry);
-
+
// by defaul the login is anonymous
- $login = 'anonymous';
- // and the token_auth anonymous.
- // Note that the user created in the DB has a token_auth value of anonymous
+ $login = 'anonymous';
+ // and the token_auth anonymous.
+ // Note that the user created in the DB has a token_auth value of anonymous
$tokenAuth = 'anonymous';
// echo $authCookie; exit;