Мелочь

This commit is contained in:
2022-12-09 13:48:50 +06:00
parent 625548f670
commit f2e1596e30
2 changed files with 5 additions and 3 deletions

View File

@ -1214,7 +1214,8 @@ public class DBMSRecords implements ServletContextAware {
String recipient = login; String recipient = login;
String subject = "New password for CCALM from http://www.ccalm.org"; String subject = "New password for CCALM from http://www.ccalm.org";
String content = "Login is: "+ email.toLowerCase()+"\n<br> New password: " + newPass; String content = "Login is: "+ email.toLowerCase()+"\n<br> New password: <b>" + newPass+"</b>";
content += "<br><br>Sincerely, the administration of ccalm.org.";
String answer = ""; String answer = "";
@ -1398,7 +1399,8 @@ public class DBMSRecords implements ServletContextAware {
//Отправляем пароль на Email //Отправляем пароль на Email
String recipient = email; String recipient = email;
String subject = "Password for new user on http://www.ccalm.org"; String subject = "Password for new user on http://www.ccalm.org";
String content = "Login is: "+ email.toLowerCase()+"\n<br> Password: " + newPass; String content = "Login is: "+ email.toLowerCase()+"\n<br> Password: <b>" + newPass+"</b>";
content += "<br><br>Sincerely, the administration of ccalm.org.";
//String answer = ""; //String answer = "";
try { try {

View File

@ -243,6 +243,7 @@ class SRec
this.pBarDiv.innerHTML='<table width="100%" height="100%" cellpadding="0" cellspacing="0"><tr><td align="center" style="vertical-align: middle;"><img src="../resources/metadata/dbms/images/loading.gif" alt=""></td></tr></table>'; this.pBarDiv.innerHTML='<table width="100%" height="100%" cellpadding="0" cellspacing="0"><tr><td align="center" style="vertical-align: middle;"><img src="../resources/metadata/dbms/images/loading.gif" alt=""></td></tr></table>';
let eDiv=document.getElementById('eDiv'+this.uid); let eDiv=document.getElementById('eDiv'+this.uid);
if(eDiv==null) return;
eDiv.appendChild(this.pBarDiv); eDiv.appendChild(this.pBarDiv);
} }
} }
@ -566,7 +567,6 @@ class SRec
} }
nodeFilter=findNodeOnPath(nodeType,"objects-list/filter"); nodeFilter=findNodeOnPath(nodeType,"objects-list/filter");
//let id=-1; //let id=-1;
//After loading the metadata, we request the data by sending an XML filter. //After loading the metadata, we request the data by sending an XML filter.
let count=0; let count=0;