Fix: Bad link for prospects

This commit is contained in:
Laurent Destailleur 2008-04-04 10:42:31 +00:00
parent d02ba9dc53
commit 1677fc677e

View File

@ -1,6 +1,6 @@
<?php <?php
/* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2007 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2007 Regis Houssin <regis@dolibarr.fr> * Copyright (C) 2005-2007 Regis Houssin <regis@dolibarr.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -16,14 +16,13 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
*/ */
/** /**
\file htdocs/includes/boxes/box_prospect.php \file htdocs/includes/boxes/box_prospect.php
\ingroup commercial \ingroup societe
\brief Module de g<EFBFBD>n<EFBFBD>ration de l'affichage de la box prospect \brief Module to generate the last prospects box.
\version $Id$
*/ */
@ -56,8 +55,8 @@ class box_prospect extends ModeleBoxes {
} }
/** /**
* \brief Charge les donn<EFBFBD>es en m<EFBFBD>moire pour affichage ult<EFBFBD>rieur * \brief Charge les donnees en memoire pour affichage ulterieur
* \param $max Nombre maximum d'enregistrements <EFBFBD> charger * \param $max Nombre maximum d'enregistrements a charger
*/ */
function loadBox($max=5) function loadBox($max=5)
{ {
@ -95,7 +94,7 @@ class box_prospect extends ModeleBoxes {
$this->info_box_contents[$i][0] = array('align' => 'left', $this->info_box_contents[$i][0] = array('align' => 'left',
'logo' => $this->boximg, 'logo' => $this->boximg,
'text' => stripslashes($objp->nom), 'text' => stripslashes($objp->nom),
'url' => DOL_URL_ROOT."/comm/prospect/fiche.php?id=".$objp->socid); 'url' => DOL_URL_ROOT."/comm/prospect/fiche.php?socid=".$objp->socid);
$this->info_box_contents[$i][1] = array('align' => 'right', $this->info_box_contents[$i][1] = array('align' => 'right',
'text' => dolibarr_print_date($objp->dc, "day")); 'text' => dolibarr_print_date($objp->dc, "day"));