Fixed edit account, it now appears to be working again

This commit is contained in:
jengo 2001-02-17 09:40:29 +00:00
parent 49a40dfe81
commit aed86715fe

View File

@ -59,6 +59,15 @@
return $this->data; return $this->data;
} }
function save_repository()
{
$this->db->query("update phpgw_accounts set account_firstname='" . $this->data['firstname']
. "', account_lastname='" . $this->data['lastname'] . "', account_status='"
. $this->data['status'] . "' where account_id='" . $this->account_id . "'",__LINE__,__FILE__);
}
function get_list($_type='both') function get_list($_type='both')
{ {
global $phpgw, $phpgw_info; global $phpgw, $phpgw_info;