From 1efecf3b5950394fd01da0efc85392b4104245a0 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Sun, 18 Mar 2007 07:08:56 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20r=E9sidu=20de=20la=20suppression=20du=20?= =?UTF-8?q?champ=20"code"=20de=20la=20table=20llx=5Fuser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/compta/facture.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/compta/facture.php b/htdocs/compta/facture.php index ac377165e4a..76b2fa14bf8 100644 --- a/htdocs/compta/facture.php +++ b/htdocs/compta/facture.php @@ -2680,7 +2680,7 @@ else /* * Liste des actions propres à la facture */ - $sql = 'SELECT id, '.$db->pdate('a.datea').' as da, a.label, a.note, code'; + $sql = 'SELECT id, '.$db->pdate('a.datea').' as da, a.label, a.note, u.login'; $sql .= ' FROM '.MAIN_DB_PREFIX.'actioncomm as a, '.MAIN_DB_PREFIX.'user as u '; $sql .= ' WHERE a.fk_user_author = u.rowid '; $sql .= ' AND a.fk_action in (9,10) '; @@ -2710,7 +2710,7 @@ else print ''.img_object($langs->trans('ShowTask'),'task').' '.$objp->id.''; print ''.dolibarr_print_date($objp->da).''; print ''.stripslashes($objp->label).''; - print ''.$objp->code.''; + print ''.$objp->login.''; print ''; $i++; }