fix for deletion of accounts

This commit is contained in:
skeeter 2000-11-17 03:28:36 +00:00
parent 4b848e45e8
commit 3ad039bb09
2 changed files with 8 additions and 7 deletions

View File

@ -184,16 +184,16 @@
$phpgw->db->lock($table_locks); $phpgw->db->lock($table_locks);
for ($i=0; $i<count($cal_id); $i++) { for ($i=0; $i<count($cal_id); $i++) {
$phpgw->db->query("delete from webcal_entry_repeats where cal_id='$cal_id[$i]'"); $phpgw->db->query("delete from webcal_entry_repeats where cal_id='".$cal_id[$i]."'");
$phpgw->db->query("delete from webcal_entry_groups where cal_id='$cal_id[$i]'"); $phpgw->db->query("delete from webcal_entry_groups where cal_id='".$cal_id[$i]."'");
} }
$phpgw->db->query("delete from webcal_entry where cal_create_by='$account_id'"); $phpgw->db->query("delete from webcal_entry where cal_create_by='".$account_id."'");
$phpgw->db->query("delete from webcal_entry_user where cal_login='$account_id'"); $phpgw->db->query("delete from webcal_entry_user where cal_login='".$account_id."'");
$phpgw->db->query("delete from todo where todo_owner='$account_id'"); $phpgw->db->query("delete from todo where todo_owner='".$account_id."'");
$phpgw->db->query("delete from addressbook where ab_owner='$account_id'"); $phpgw->db->query("delete from addressbook where ab_owner='".$account_id."'");
$phpgw->db->query("delete from accounts where account_lid='$account_id'"); $phpgw->db->query("delete from accounts where account_id='".$account_id."'");
$phpgw->common->preferences_delete("all",$account_id); $phpgw->common->preferences_delete("all",$account_id);

View File

@ -6,6 +6,7 @@
- Fixed a problem with the email folders only reporting back the number of messages - Fixed a problem with the email folders only reporting back the number of messages
in the INBOX regardless of which folder it is in. in the INBOX regardless of which folder it is in.
- Added calendar day view to home page. - Added calendar day view to home page.
- Fixed problem with deletion of accounts.
[0.9.3] - Fixed the new user account form not returning the users firstname or last name when an [0.9.3] - Fixed the new user account form not returning the users firstname or last name when an
error is reported. error is reported.