Added the ability to change the account_lid in SQL. LDAP already had that ability.

This commit is contained in:
skeeter 2002-01-13 03:53:43 +00:00
parent a9a15a449d
commit 38684d2cf6

View File

@ -74,6 +74,7 @@
$this->db->query("UPDATE phpgw_accounts SET account_firstname='" . $this->data['firstname']
. "', account_lastname='" . $this->data['lastname'] . "', account_status='"
. $this->data['status'] . "', account_expires='" . $this->data['expires']
. ($this->data['account_lid']?"', account_lid='".$this->data['account_lid']:'')
. "' WHERE account_id='"
. $this->account_id . "'",__LINE__,__FILE__);
}