From cd79726a66be6ce9bf8c129abc1ecee101e624e1 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Mon, 30 Jun 2003 16:25:34 +0000 Subject: [PATCH] changement nom de table --- htdocs/societe/notify/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/societe/notify/index.php b/htdocs/societe/notify/index.php index edda3d86bd2..8ff673656d4 100644 --- a/htdocs/societe/notify/index.php +++ b/htdocs/societe/notify/index.php @@ -57,7 +57,7 @@ $pagenext = $page + 1; */ print_barre_liste("Liste des societes", $page, $PHP_SELF); -$sql = "SELECT s.nom, s.idp, c.name, c.firstname, a.titre,n.rowid FROM llx_socpeople as c, llx_action_def as a, llx_notify as n, llx_societe as s"; +$sql = "SELECT s.nom, s.idp, c.name, c.firstname, a.titre,n.rowid FROM llx_socpeople as c, llx_action_def as a, llx_notify_def as n, llx_societe as s"; $sql .= " WHERE n.fk_contact = c.idp AND a.rowid = n.fk_action"; $sql .= " AND n.fk_soc = s.idp";