diff --git a/htdocs/admin/dav.php b/htdocs/admin/dav.php
index 9edc123a784..e12848e3de1 100644
--- a/htdocs/admin/dav.php
+++ b/htdocs/admin/dav.php
@@ -123,12 +123,12 @@ if ($action == 'edit') {
print '
| '.$langs->trans("Parameter").' | '.$langs->trans("Value").' |
';
foreach ($arrayofparameters as $key => $val) {
- print '| ';
+ print ' |
| ';
$tooltiphelp = (($langs->trans($key.'Tooltip') != $key.'Tooltip') ? $langs->trans($key.'Tooltip') : '');
$label = $langs->trans($key);
if ($key == 'DAV_RESTICT_ON_IP') {
$label = $langs->trans("RESTRICT_ON_IP");
- $label .= ' '.$langs->trans("Example").': '.$langs->trans("IPListExample");
+ $label .= ' '.$langs->trans("Example").': '.$langs->trans("IPListExample").'';
}
print $form->textwithpicto($label, $tooltiphelp);
print ' | ';
|