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:
authordiosmosis <diosmosis@users.noreply.github.com>2018-12-08 09:16:59 +0300
committerGitHub <noreply@github.com>2018-12-08 09:16:59 +0300
commitdf062ae092d6b44f319582d7d567db1ec42cc29e (patch)
tree6a916eccb4c3137e3b9bf3de7d7e682b66a70a73 /plugins/Login
parent53c4d95a4b60ee099400db8c36ac64a68ffa37a3 (diff)
Fixing build (#13808)
* Rename long files. * fix test name * Try to fix several test failures. * Rename expected files. * --amend * Try to fix tests. * Fix more system tests. * Fix more tests. * Add debug log. * Update CustomAlerts submodule for test fix. * Fix some more screenshots. * Fixing more tests. * Update more expected test files & screenshots. * Last couple fixes. * update tagmanager submodule * update submodule * update submodule
Diffstat (limited to 'plugins/Login')
-rw-r--r--plugins/Login/FormResetPassword.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Login/FormResetPassword.php b/plugins/Login/FormResetPassword.php
index 30eabcb963..f9b251cba9 100644
--- a/plugins/Login/FormResetPassword.php
+++ b/plugins/Login/FormResetPassword.php
@@ -31,7 +31,7 @@ class FormResetPassword extends QuickForm2
$passwordBis = $this->addElement('password', 'form_password_bis');
$passwordBis->addRule('required', Piwik::translate('General_Required', Piwik::translate('Login_PasswordRepeat')));
- $passwordBis->addRule('eq', Piwik::translate('Login_PasswordsDoNotMatch'), $password);
+ $passwordBis->addRule('eq', Piwik::translate('Login_PasswordsDoNotMatch'), ['operand' => $password]);
$this->addElement('hidden', 'form_nonce');