diff --git a/phpgwapi/inc/class.accounts_contacts.inc.php b/phpgwapi/inc/class.accounts_contacts.inc.php index 13028654a0..e1e83351fc 100644 --- a/phpgwapi/inc/class.accounts_contacts.inc.php +++ b/phpgwapi/inc/class.accounts_contacts.inc.php @@ -1,10 +1,10 @@ * + * phpGroupWare API - Accounts manager for the contacts class * + * This file written by Miles Lott * * and Lars Kneschke * - * View and manipulate account records using LDAP * - * Copyright (C) 2000, 2001 Joseph Engo * + * View and manipulate account records using the contacts class * + * Copyright (C) 2000, 2001 Miles Lott * * -------------------------------------------------------------------------* * This library is part of the phpGroupWare API * * http://www.phpgroupware.org/api * @@ -61,6 +61,7 @@ /* Now dump it into the array */ $this->data["account_id"] = $allValues[0]["id"]; $this->data["account_lid"] = $allValues[0]["lid"]; + $this->data["account_type"] = $allValues[0]["tid"]; $this->data["firstname"] = $allValues[0]["n_given"]; $this->data["lastname"] = $allValues[0]["n_family"]; $this->data["fullname"] = $allValues[0]["fn"];