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:
authorJouveer <35312684+Jouveer@users.noreply.github.com>2018-01-18 03:56:18 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2018-01-18 03:56:18 +0300
commit7a6b99f26631ac9a80ed0475bed524bd8496a4d1 (patch)
tree6202cf759429b5797feb13c69d482677db53d22e /plugins/Login/FormLogin.php
parentb98e34c10fd2b19493122031aefa730f9383ba1c (diff)
Improved Login and Reset Password Fields (#12448)
* Improved Login and Reset Password Fields * Update index.twig * Update userSettings.twig
Diffstat (limited to 'plugins/Login/FormLogin.php')
-rw-r--r--plugins/Login/FormLogin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Login/FormLogin.php b/plugins/Login/FormLogin.php
index d7be8a900e..16213ab56b 100644
--- a/plugins/Login/FormLogin.php
+++ b/plugins/Login/FormLogin.php
@@ -25,7 +25,7 @@ class FormLogin extends QuickForm2
function init()
{
$this->addElement('text', 'form_login')
- ->addRule('required', Piwik::translate('General_Required', Piwik::translate('General_Username')));
+ ->addRule('required', Piwik::translate('General_Required', Piwik::translate('Login_LoginOrEmail')));
$this->addElement('password', 'form_password')
->addRule('required', Piwik::translate('General_Required', Piwik::translate('General_Password')));