diff --git a/htdocs/opensurvey/list.php b/htdocs/opensurvey/list.php
index 2da002eb21574..2cd029ff91a36 100644
--- a/htdocs/opensurvey/list.php
+++ b/htdocs/opensurvey/list.php
@@ -352,7 +352,7 @@
print '';
}
print '
| ';
-print ' | ';
+print ' | ';
print ' | ';
print ' | ';
print ' | ';
@@ -446,8 +446,9 @@
}
print '';
}
+
// Ref
- print '';
+ print ' | ';
print $opensurvey_static->getNomUrl(1);
print ' | ';
if (!$i) {
@@ -455,13 +456,13 @@
}
// Title
- print ''.dol_htmlentities($obj->title).' | ';
+ print ''.dol_htmlentities($obj->title).' | ';
if (!$i) {
$totalarray['nbfield']++;
}
// Type
- print '';
+ print ' | ';
$type = ($obj->format == 'A') ? 'classic' : 'date';
print img_picto('', dol_buildpath('/opensurvey/img/'.($type == 'classic' ? 'chart-32.png' : 'calendar-32.png'), 1), 'width="16"', 1);
print ' '.$langs->trans($type == 'classic' ? "TypeClassic" : "TypeDate");
@@ -470,7 +471,7 @@
$totalarray['nbfield']++;
}
- print ' | ';
+ print ' | ';
// Author
if ($obj->fk_user_creat) {
$userstatic = new User($db);
|