Minor esthetical change
This commit is contained in:
parent
7408bb6f8e
commit
f2b6dcfe16
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2003 Eric Seigne <erics@rycks.com>
|
* Copyright (C) 2003 Eric Seigne <erics@rycks.com>
|
||||||
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -96,8 +96,7 @@ if ($search_priv < 0) $search_priv='';
|
|||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Affichage liste
|
* View
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
llxHeader();
|
llxHeader();
|
||||||
@ -236,7 +235,7 @@ if ($result)
|
|||||||
{
|
{
|
||||||
print_liste_field_titre($langs->trans("EMail"),"index.php","p.email", $begin, $param, '', $sortfield,$sortorder);
|
print_liste_field_titre($langs->trans("EMail"),"index.php","p.email", $begin, $param, '', $sortfield,$sortorder);
|
||||||
}
|
}
|
||||||
print_liste_field_titre($langs->trans("DateModification"),"index.php","p.tms", $begin, $param, 'align="center"', $sortfield,$sortorder);
|
print_liste_field_titre($langs->trans("DateModificationShort"),"index.php","p.tms", $begin, $param, 'align="center"', $sortfield,$sortorder);
|
||||||
print_liste_field_titre($langs->trans("ContactVisibility"),"index.php","p.priv", $begin, $param, 'align="center"', $sortfield,$sortorder);
|
print_liste_field_titre($langs->trans("ContactVisibility"),"index.php","p.priv", $begin, $param, 'align="center"', $sortfield,$sortorder);
|
||||||
print '<td class="liste_titre"> </td>';
|
print '<td class="liste_titre"> </td>';
|
||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
@ -269,7 +268,7 @@ if ($result)
|
|||||||
print '</td>';
|
print '</td>';
|
||||||
}
|
}
|
||||||
print '<td class="liste_titre"> </td>';
|
print '<td class="liste_titre"> </td>';
|
||||||
print '<td class="liste_titre">';
|
print '<td class="liste_titre" align="center">';
|
||||||
$selectarray=array('0'=>$langs->trans("ContactPublic"),'1'=>$langs->trans("ContactPrivate"));
|
$selectarray=array('0'=>$langs->trans("ContactPublic"),'1'=>$langs->trans("ContactPrivate"));
|
||||||
$form->select_array('search_priv',$selectarray,$search_priv,1);
|
$form->select_array('search_priv',$selectarray,$search_priv,1);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
@ -293,18 +292,18 @@ if ($result)
|
|||||||
$contactstatic->name=$obj->name;
|
$contactstatic->name=$obj->name;
|
||||||
$contactstatic->firstname='';
|
$contactstatic->firstname='';
|
||||||
$contactstatic->id=$obj->cidp;
|
$contactstatic->id=$obj->cidp;
|
||||||
print $contactstatic->getNomUrl(1);
|
print $contactstatic->getNomUrl(1,'',20);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
// Firstname
|
// Firstname
|
||||||
print '<td>'.$obj->firstname.'</td>';
|
print '<td>'.dolibarr_trunc($obj->firstname,20).'</td>';
|
||||||
|
|
||||||
// Company
|
// Company
|
||||||
print '<td>';
|
print '<td>';
|
||||||
if ($obj->socid)
|
if ($obj->socid)
|
||||||
{
|
{
|
||||||
print '<a href="'.DOL_URL_ROOT.'/comm/fiche.php?socid='.$obj->socid.'">';
|
print '<a href="'.DOL_URL_ROOT.'/comm/fiche.php?socid='.$obj->socid.'">';
|
||||||
print img_object($langs->trans("ShowCompany"),"company").' '.dolibarr_trunc($obj->nom,24).'</a>';
|
print img_object($langs->trans("ShowCompany"),"company").' '.dolibarr_trunc($obj->nom,20).'</a>';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@ -172,6 +172,7 @@ DateStart=Date start
|
|||||||
DateEnd=Date end
|
DateEnd=Date end
|
||||||
DateCreation=Creation date
|
DateCreation=Creation date
|
||||||
DateModification=Modification date
|
DateModification=Modification date
|
||||||
|
DateModificationShort=Modif. date
|
||||||
DateLastModification=Last modification date
|
DateLastModification=Last modification date
|
||||||
DateValidation=Validation date
|
DateValidation=Validation date
|
||||||
DateClosing=Closing date
|
DateClosing=Closing date
|
||||||
|
|||||||
@ -171,6 +171,7 @@ DateStart=Date début
|
|||||||
DateEnd=Date fin
|
DateEnd=Date fin
|
||||||
DateCreation=Date création
|
DateCreation=Date création
|
||||||
DateModification=Date modification
|
DateModification=Date modification
|
||||||
|
DateModificationShort=Date modif.
|
||||||
DateLastModification=Date dernière modification
|
DateLastModification=Date dernière modification
|
||||||
DateValidation=Date validation
|
DateValidation=Date validation
|
||||||
DateClosing=Date clôture
|
DateClosing=Date clôture
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user