css
This commit is contained in:
parent
cc0560c73d
commit
a33f6a8977
@ -949,7 +949,7 @@ while ($i < min($num, $limit)) {
|
|||||||
}
|
}
|
||||||
// Firstname
|
// Firstname
|
||||||
if (!empty($arrayfields['d.firstname']['checked'])) {
|
if (!empty($arrayfields['d.firstname']['checked'])) {
|
||||||
print "<td>";
|
print '<td class="tdoverflowmax150" title="'.dol_escape_htmltag($obj->firstname).'">';
|
||||||
print $obj->firstname;
|
print $obj->firstname;
|
||||||
print "</td>\n";
|
print "</td>\n";
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
@ -958,7 +958,7 @@ while ($i < min($num, $limit)) {
|
|||||||
}
|
}
|
||||||
// Lastname
|
// Lastname
|
||||||
if (!empty($arrayfields['d.lastname']['checked'])) {
|
if (!empty($arrayfields['d.lastname']['checked'])) {
|
||||||
print "<td>";
|
print '<td class="tdoverflowmax150" title="'.dol_escape_htmltag($obj->lastname).'">';
|
||||||
print $obj->lastname;
|
print $obj->lastname;
|
||||||
print "</td>\n";
|
print "</td>\n";
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
@ -978,13 +978,13 @@ while ($i < min($num, $limit)) {
|
|||||||
}
|
}
|
||||||
// Company
|
// Company
|
||||||
if (!empty($arrayfields['d.company']['checked'])) {
|
if (!empty($arrayfields['d.company']['checked'])) {
|
||||||
print "<td>";
|
print '<td class="tdoverflowmax150" title="'.dol_escape_htmltag($companyname).'">';
|
||||||
print $companyname;
|
print $companyname;
|
||||||
print "</td>\n";
|
print "</td>\n";
|
||||||
}
|
}
|
||||||
// Login
|
// Login
|
||||||
if (!empty($arrayfields['d.login']['checked'])) {
|
if (!empty($arrayfields['d.login']['checked'])) {
|
||||||
print "<td>".$obj->login."</td>\n";
|
print '<td class="tdoverflowmax150" title="'.dol_escape_htmltag($obj->login).'">'.$obj->login."</td>\n";
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
}
|
}
|
||||||
@ -1009,7 +1009,7 @@ while ($i < min($num, $limit)) {
|
|||||||
if (!empty($arrayfields['t.libelle']['checked'])) {
|
if (!empty($arrayfields['t.libelle']['checked'])) {
|
||||||
$membertypestatic->id = $obj->type_id;
|
$membertypestatic->id = $obj->type_id;
|
||||||
$membertypestatic->label = $obj->type;
|
$membertypestatic->label = $obj->type;
|
||||||
print '<td class="nowrap">';
|
print '<td class="nowraponall">';
|
||||||
print $membertypestatic->getNomUrl(1, 32);
|
print $membertypestatic->getNomUrl(1, 32);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
@ -1018,7 +1018,7 @@ while ($i < min($num, $limit)) {
|
|||||||
}
|
}
|
||||||
// Address
|
// Address
|
||||||
if (!empty($arrayfields['d.address']['checked'])) {
|
if (!empty($arrayfields['d.address']['checked'])) {
|
||||||
print '<td class="nocellnopadd">';
|
print '<td class="nocellnopadd tdoverflowmax200" title="'.dol_escape_htmltag($obj->address).'">';
|
||||||
print $obj->address;
|
print $obj->address;
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user