1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 21:55:56 +00:00

option MAIL_RESET_PASS (closes #11)

This commit is contained in:
Andrew Dolgov
2005-12-20 07:51:06 +01:00
parent 8629e09d9b
commit 72932a754f
4 changed files with 56 additions and 17 deletions

View File

@@ -864,6 +864,7 @@ function userEditSave() {
var login = document.getElementById("iedit_ulogin").value;
var level = document.getElementById("iedit_ulevel").value;
var email = document.getElementById("iedit_email").value;
if (login.length == 0) {
notify("Login cannot be blank.");
@@ -880,8 +881,8 @@ function userEditSave() {
notify("Saving user...");
xmlhttp.open("GET", "backend.php?op=pref-users&subop=editSave&id=" +
user + "&l=" + param_escape(login) + "&al=" + param_escape(level),
true);
user + "&l=" + param_escape(login) + "&al=" + param_escape(level) +
"&e=" + param_escape(email), true);
xmlhttp.onreadystatechange=userlist_callback;
xmlhttp.send(null);