From 3313bb0a39d0e9531ff0faf8f40adc37170578f2 Mon Sep 17 00:00:00 2001 From: skeeter Date: Fri, 30 Mar 2001 02:32:23 +0000 Subject: [PATCH] Changed to . --- addressbook/inc/hook_admin_deleteaccount.inc.php | 4 ++-- calendar/inc/hook_admin_deleteaccount.inc.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/addressbook/inc/hook_admin_deleteaccount.inc.php b/addressbook/inc/hook_admin_deleteaccount.inc.php index b8f8080091..e4ea7de347 100755 --- a/addressbook/inc/hook_admin_deleteaccount.inc.php +++ b/addressbook/inc/hook_admin_deleteaccount.inc.php @@ -13,9 +13,9 @@ // Delete all records for a user if (floor($PHP_VERSION ) == 4) { - global $accountid; + global $account_id; } $contacts = CreateObject('phpgwapi.contacts'); - $contacts->delete_all($accountid); + $contacts->delete_all($account_id); ?> diff --git a/calendar/inc/hook_admin_deleteaccount.inc.php b/calendar/inc/hook_admin_deleteaccount.inc.php index 524978c62b..2a3363c869 100755 --- a/calendar/inc/hook_admin_deleteaccount.inc.php +++ b/calendar/inc/hook_admin_deleteaccount.inc.php @@ -14,10 +14,10 @@ // Delete all records for a user if (floor($PHP_VERSION ) == 4) { - global $accountid; + global $account_id; } $calendar = CreateObject('calendar.calendar'); - $cal_stream = $calendar->open('INBOX',$accountid,''); - $calendar->delete_calendar($cal_stream,$accountid); + $cal_stream = $calendar->open('INBOX',$account_id,''); + $calendar->delete_calendar($cal_stream,$account_id); ?>