From beb0ef666ef65232a2bf5d21288dde327f8b8752 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Sun, 22 Jun 2003 15:02:22 +0000 Subject: [PATCH] =?UTF-8?q?URL=20de=20la=20soci=E9t=E9=20sur=20son=20nom?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/includes/boxes/box_factures.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/htdocs/includes/boxes/box_factures.php b/htdocs/includes/boxes/box_factures.php index 57e2da974b8..c58bdeaa9a9 100644 --- a/htdocs/includes/boxes/box_factures.php +++ b/htdocs/includes/boxes/box_factures.php @@ -42,9 +42,13 @@ if ($result) { $objp = $db->fetch_object( $i); - $info_box_contents[$i][0] = array('align' => 'center', - 'text' => $objp->facnumber . " " . $objp->nom, + $info_box_contents[$i][0] = array('align' => 'left', + 'text' => $objp->facnumber, 'url' => DOL_URL_ROOT."/compta/facture.php3?facid=".$objp->facid); + + $info_box_contents[$i][1] = array('align' => 'left', + 'text' => $objp->nom, + 'url' => DOL_URL_ROOT."/comm/fiche.php3?socid=".$objp->idp); $i++; } }