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/UsersManager/angularjs/personal-settings/personal-settings.controller.js')
-rw-r--r--plugins/UsersManager/angularjs/personal-settings/personal-settings.controller.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/UsersManager/angularjs/personal-settings/personal-settings.controller.js b/plugins/UsersManager/angularjs/personal-settings/personal-settings.controller.js
index 811fd9466e..64ab12530d 100644
--- a/plugins/UsersManager/angularjs/personal-settings/personal-settings.controller.js
+++ b/plugins/UsersManager/angularjs/personal-settings/personal-settings.controller.js
@@ -65,6 +65,10 @@
timeformat: this.timeformat,
};
+ if (this.password) {
+ postParams.password = this.password;
+ }
+
if (this.passwordBis) {
postParams.passwordBis = this.passwordBis;
}
@@ -72,4 +76,4 @@
updateSettings(postParams);
};
}
-})(); \ No newline at end of file
+})();