mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
Added a better message about users logining in for the first time about change there password
This commit is contained in:
parent
96e36d90e4
commit
322a8f25b4
@ -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();
|
||||
|
||||
|
@ -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();
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user