Skip to content
Snippets Groups Projects
Commit ed25c0fd authored by Juanjo Menent's avatar Juanjo Menent Committed by GitHub
Browse files

Merge pull request #5645 from grandoc/4.0

fix : bad sort
parents b81de6b3 9c22d94b
No related branches found
No related tags found
No related merge requests found
......@@ -610,19 +610,19 @@ if ($resql)
print "<td>";
print $memberstatic->getNomUrl(1);
print "</td>\n";
}
// Lastname
if (! empty($arrayfields['d.lastname']['checked']))
}
// Firstname
if (! empty($arrayfields['d.firstname']['checked']))
{
print "<td>";
print $obj->lastname;
print $obj->firstname;
print "</td>\n";
}
// Firstname
if (! empty($arrayfields['d.firstname']['checked']))
// Lastname
if (! empty($arrayfields['d.lastname']['checked']))
{
print "<td>";
print $obj->firstname;
print $obj->lastname;
print "</td>\n";
}
// 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