accounts -> phpgw_accounts

This commit is contained in:
Lars Kneschke 2001-02-05 19:04:47 +00:00
parent e4dda639c7
commit f02cdb1bd3

View File

@ -250,7 +250,7 @@
global $phpgw;
$db = $phpgw->db;
$db->query("select account_lid,account_firstname,account_lastname from accounts where account_id=".$id,__LINE__,__FILE__);
$db->query("select account_lid,account_firstname,account_lastname from phpgw_accounts where account_id=".$id,__LINE__,__FILE__);
$db->next_record();
return $phpgw->common->display_fullname($db->f("account_lid"),$db->f("account_firstname"),$db->f("account_lastname"));