Skip to content
Snippets Groups Projects
Commit 9c22d94b authored by Philippe Grand's avatar Philippe Grand
Browse files

fix : bad sort

parent 83107746
No related branches found
No related tags found
No related merge requests found
...@@ -610,19 +610,19 @@ if ($resql) ...@@ -610,19 +610,19 @@ if ($resql)
print "<td>"; print "<td>";
print $memberstatic->getNomUrl(1); print $memberstatic->getNomUrl(1);
print "</td>\n"; print "</td>\n";
} }
// Lastname // Firstname
if (! empty($arrayfields['d.lastname']['checked'])) if (! empty($arrayfields['d.firstname']['checked']))
{ {
print "<td>"; print "<td>";
print $obj->lastname; print $obj->firstname;
print "</td>\n"; print "</td>\n";
} }
// Firstname // Lastname
if (! empty($arrayfields['d.firstname']['checked'])) if (! empty($arrayfields['d.lastname']['checked']))
{ {
print "<td>"; print "<td>";
print $obj->firstname; print $obj->lastname;
print "</td>\n"; print "</td>\n";
} }
// Company // Company
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment