Minor esthetical change
This commit is contained in:
parent
7408bb6f8e
commit
f2b6dcfe16
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||
* 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
|
||||
* 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();
|
||||
@ -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("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 '<td class="liste_titre"> </td>';
|
||||
print "</tr>\n";
|
||||
@ -269,7 +268,7 @@ if ($result)
|
||||
print '</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"));
|
||||
$form->select_array('search_priv',$selectarray,$search_priv,1);
|
||||
print '</td>';
|
||||
@ -293,18 +292,18 @@ if ($result)
|
||||
$contactstatic->name=$obj->name;
|
||||
$contactstatic->firstname='';
|
||||
$contactstatic->id=$obj->cidp;
|
||||
print $contactstatic->getNomUrl(1);
|
||||
print $contactstatic->getNomUrl(1,'',20);
|
||||
print '</td>';
|
||||
|
||||
// Firstname
|
||||
print '<td>'.$obj->firstname.'</td>';
|
||||
print '<td>'.dolibarr_trunc($obj->firstname,20).'</td>';
|
||||
|
||||
// Company
|
||||
print '<td>';
|
||||
if ($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
|
||||
{
|
||||
|
||||
@ -172,6 +172,7 @@ DateStart=Date start
|
||||
DateEnd=Date end
|
||||
DateCreation=Creation date
|
||||
DateModification=Modification date
|
||||
DateModificationShort=Modif. date
|
||||
DateLastModification=Last modification date
|
||||
DateValidation=Validation date
|
||||
DateClosing=Closing date
|
||||
|
||||
@ -171,6 +171,7 @@ DateStart=Date début
|
||||
DateEnd=Date fin
|
||||
DateCreation=Date création
|
||||
DateModification=Date modification
|
||||
DateModificationShort=Date modif.
|
||||
DateLastModification=Date dernière modification
|
||||
DateValidation=Date validation
|
||||
DateClosing=Date clôture
|
||||
|
||||
Loading…
Reference in New Issue
Block a user