Added a better message about users logining in for the first time about change there password

This commit is contained in:
jengo 2000-08-19 13:27:01 +00:00
parent 96e36d90e4
commit 322a8f25b4
3 changed files with 4 additions and 3 deletions

View File

@ -82,7 +82,7 @@
$phpgw->db->query("delete from addressbook where owner='$lid'");
$phpgw->db->query("delete from accounts where loginid='$lid'");
$phpgw->db->query("delete from users_headlines where owner='$lid'");
$phpgw->db->query("delete from profiles where owner='$lid'");
//$phpgw->db->query("delete from profiles where owner='$lid'");
$phpgw->db->unlock();

View File

@ -61,10 +61,10 @@
$phpgwpermissions->add("anonymous");
$sql = "insert into accounts (loginid,passwd,firstname,lastname,"
. "permissions,groups,status) values ('$n_loginid'"
. "permissions,groups,status,lastpasswd_change) values ('$n_loginid'"
. ",'" . md5($n_passwd) . "','" . addslashes($n_firstname) . "','"
. addslashes($n_lastname) . "','" . $phpgw->permissions->add_rebuild()
. "','" . $phpgw->groups->array_to_string("none",$n_groups) . "','A')";
. "','" . $phpgw->groups->array_to_string("none",$n_groups) . "','A',0)";
$phpgw->db->query($sql);
$phpgw->db->unlock();

View File

@ -22,6 +22,7 @@
- Added feature to filter out entrys only within a certain group.
This is for the todo list and addressbook.
- Added a search field and next matchs icons to accounts and groups form.
- Fixed the "code" messages not showing up after adding new entrys and what not.
[08152000] - Fixed a problem with the calendar not showing the months in the users
langague preference.