diff --git a/htdocs/core/filemanagerdol/browser/default/frmresourceslist.php b/htdocs/core/filemanagerdol/browser/default/frmresourceslist.php
index f7df05acdde..81f536f5228 100644
--- a/htdocs/core/filemanagerdol/browser/default/frmresourceslist.php
+++ b/htdocs/core/filemanagerdol/browser/default/frmresourceslist.php
@@ -101,7 +101,7 @@ oListManager.GetFileRowHtml = function( fileName, fileUrl, fileSize )
sLink +
fileName +
'<\/a>' +
- '<\/td>
' +
+ '<\/td> | ' +
fileSize +
' KB' +
'<\/td><\/tr>' ;
diff --git a/htdocs/core/lib/admin.lib.php b/htdocs/core/lib/admin.lib.php
index b58c9107cf8..004762d2810 100644
--- a/htdocs/core/lib/admin.lib.php
+++ b/htdocs/core/lib/admin.lib.php
@@ -367,7 +367,7 @@ function run_sql($sqlfile, $silent = 1, $entity = '', $usesavepoint = 1, $handle
$listofinsertedrowid[$cursorinsert]=$insertedrowid;
dol_syslog('Admin.lib::run_sql Insert nb '.$cursorinsert.', done in table '.$table.', rowid is '.$listofinsertedrowid[$cursorinsert], LOG_DEBUG);
}
- // print ' | OK | ';
+ // print 'OK | ';
}
else
{
@@ -410,13 +410,13 @@ function run_sql($sqlfile, $silent = 1, $entity = '', $usesavepoint = 1, $handle
if ($error == 0)
{
if (! $silent) print '| '.$langs->trans("ProcessMigrateScript").' | ';
- if (! $silent) print ''.$langs->trans("OK").' |
'."\n";
+ if (! $silent) print ''.$langs->trans("OK").' | '."\n";
$ok = 1;
}
else
{
if (! $silent) print '| '.$langs->trans("ProcessMigrateScript").' | ';
- if (! $silent) print ''.$langs->trans("KO").' |
'."\n";
+ if (! $silent) print ''.$langs->trans("KO").' | '."\n";
$ok = 0;
}
diff --git a/htdocs/core/lib/agenda.lib.php b/htdocs/core/lib/agenda.lib.php
index c24cc0928ed..531b90b75e3 100644
--- a/htdocs/core/lib/agenda.lib.php
+++ b/htdocs/core/lib/agenda.lib.php
@@ -239,7 +239,7 @@ function show_array_actions_to_do($max = 5)
print '';
print '| '.$langs->trans("LastActionsToDo", $max).' | ';
- print ''.$langs->trans("FullList").' | ';
+ print ''.$langs->trans("FullList").' | ';
print '
';
$var = true;
@@ -276,7 +276,7 @@ function show_array_actions_to_do($max = 5)
$datep2=$db->jdate($obj->dp2);
// Date
- print ''.dol_print_date($datep, 'day').' ';
+ print ' | '.dol_print_date($datep, 'day').' ';
$late=0;
if ($obj->percent == 0 && $datep && $datep < time()) $late=1;
if ($obj->percent == 0 && ! $datep && $datep2 && $datep2 < time()) $late=1;
@@ -286,7 +286,7 @@ function show_array_actions_to_do($max = 5)
print " | ";
// Statut
- print "".$staticaction->LibStatut($obj->percent, 3)." | \n";
+ print ''.$staticaction->LibStatut($obj->percent, 3)." | \n";
print "\n";
@@ -336,7 +336,7 @@ function show_array_last_actions_done($max = 5)
print '';
print '| '.$langs->trans("LastDoneTasks", $max).' | ';
- print ''.$langs->trans("FullList").' | ';
+ print ''.$langs->trans("FullList").' | ';
print '
';
$var = true;
$i = 0;
@@ -369,11 +369,11 @@ function show_array_last_actions_done($max = 5)
print '';
// Date
- print ''.dol_print_date($db->jdate($obj->da2), 'day');
+ print ' | '.dol_print_date($db->jdate($obj->da2), 'day');
print " | ";
// Statut
- print "".$staticaction->LibStatut($obj->percent, 3)." | \n";
+ print "".$staticaction->LibStatut($obj->percent, 3)." | \n";
print "\n";
$i++;