Skip to content
Snippets Groups Projects
Commit aba298b4 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Bad balance of html tags

parent 1cee0b51
No related branches found
No related tags found
No related merge requests found
......@@ -245,8 +245,8 @@ if ($id > 0 || ! empty($ref))
print '<input type="hidden" name="action" value="addcontact">';
print '<input type="hidden" name="source" value="internal">';
// Ligne ajout pour contact interne
print '<tr'.$bc[$var].'>';
// Line to add an internal contact
print "<tr ".$bc[$var].">";
print '<td nowrap="nowrap">';
print img_object('','user').' '.$langs->trans("Users");
......@@ -275,9 +275,9 @@ if ($id > 0 || ! empty($ref))
print '<input type="hidden" name="id" value="'.$id.'">';
print '<input type="hidden" name="source" value="external">';
// Ligne ajout pour contact externe
$var=!$var;
print '<tr'.$bc[$var].'>';
// Line to add an external contact
$var=!$var;
print "<tr ".$bc[$var].">";
print '<td nowrap="nowrap">';
print img_object('','contact').' '.$langs->trans("ThirdPartyContacts");
......@@ -302,11 +302,9 @@ if ($id > 0 || ! empty($ref))
print '</form>';
print '<tr><td colspan="6">&nbsp;</td></tr>';
print '</table>';
print '<tr><td colspan="6">&nbsp;</td></tr>';
}
print '<table class="noborder" width="100%">';
// Liste des contacts lies
print '<tr class="liste_titre">';
......
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