X-Git-Url: http://mop.ddnsfree.com/gitweb/?p=brisk.git;a=blobdiff_plain;f=web%2FObj%2Fdbase_pgsql.phh;h=5c187aa56f3ab25f0276f3cb3c5b28109807c015;hp=e3e1551af925da4c52ad156819283ff7dee57e07;hb=7f9618888f9963c4a7daebeb9e3d14ef0a56b968;hpb=a77cf3db1fbace39c49b030b9e144a316f007373 diff --git a/web/Obj/dbase_pgsql.phh b/web/Obj/dbase_pgsql.phh index e3e1551..5c187aa 100644 --- a/web/Obj/dbase_pgsql.phh +++ b/web/Obj/dbase_pgsql.phh @@ -855,12 +855,12 @@ INSERT INTO %smails (code, ucode, type, tstamp, subj, body_txt, body_htm, hash) return (TRUE); } - function usernet_bycode($owner, $target) + function usersnet_bycode($owner, $target) { GLOBAL $G_dbpfx; $ret = FALSE; - $net_sql = sprintf("SELECT * FROM %susers_net WHERE owner = %d AND target = %d;", + $net_sql = sprintf("SELECT * FROM %susersnet WHERE owner = %d AND target = %d;", $G_dbpfx, $owner, $target); if (($net_pg = $this->query($net_sql)) == FALSE) { return FALSE; @@ -870,12 +870,12 @@ INSERT INTO %smails (code, ucode, type, tstamp, subj, body_txt, body_htm, hash) $net_obj = pg_fetch_object($net_pg, 0); - return (UserNetItem::UserNetItemFromRecord($net_obj)); + return (UsersNetItem::UsersNetItemFromRecord($net_obj)); } - function usernet_default($owner, $target) + function usersnet_default($owner, $target) { - return (UserNetItem::UserNetItemDefaults($owner, $target)); + return (UsersNetItem::UsersNetItemDefaults($owner, $target)); } } // End class BriskDB