From 4199aceffc45e459beee25248f68e8dbb9abb06e Mon Sep 17 00:00:00 2001 From: skeeter Date: Mon, 19 Mar 2001 20:37:09 +0000 Subject: [PATCH] mistype the name of the new function get_account_id() --- phpgwapi/inc/class.acl.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.acl.inc.php b/phpgwapi/inc/class.acl.inc.php index 4628c25069..a0d5515a64 100644 --- a/phpgwapi/inc/class.acl.inc.php +++ b/phpgwapi/inc/class.acl.inc.php @@ -367,7 +367,7 @@ It should use the values in the $this->data @param $account_id account id */ function delete_repository($app, $location, $accountid = ''){ - $account_id = get_account_type($accountid,$this->account_id); + $account_id = get_account_id($accountid,$this->account_id); $sql = "delete from phpgw_acl where acl_appname like '".$app."'" . " and acl_location like '".$location."' and " . " acl_account = ".$account_id;