Adjust to pass account_type in data array, as with other accounts backends

This commit is contained in:
Miles Lott 2001-04-07 17:06:26 +00:00
parent 3e8736041a
commit d2714dedf8

View File

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