';
// Ref
print '';
@@ -633,4 +633,4 @@ $db->close();
llxFooter('$Date$ - $Revision$');
-?>
+?>
\ No newline at end of file
diff --git a/htdocs/lib/agenda.lib.php b/htdocs/lib/agenda.lib.php
index 21b7e04ac37..1446b9e138d 100644
--- a/htdocs/lib/agenda.lib.php
+++ b/htdocs/lib/agenda.lib.php
@@ -153,8 +153,8 @@ function show_array_actions_to_do($max=5)
if ($num > 0)
{
print '';
- print '| '.$langs->trans("LastActionsToDo",$max).' | ';
- print ''.$langs->trans("FullList").'';
+ print ' | | '.$langs->trans("LastActionsToDo",$max).' | ';
+ print ''.$langs->trans("FullList").'';
print ' | ';
$var = true;
$i = 0;
@@ -167,7 +167,7 @@ function show_array_actions_to_do($max=5)
$obj = $db->fetch_object($resql);
$var=!$var;
- print "";
+ print ' ';
$staticaction->type_code=$obj->code;
$staticaction->libelle=$obj->label;
@@ -248,8 +248,8 @@ function show_array_last_actions_done($max=5)
$num = $db->num_rows($resql);
print '';
- print '| '.$langs->trans("LastDoneTasks",$max).' | ';
- print ''.$langs->trans("FullList").'';
+ print ' | | '.$langs->trans("LastDoneTasks",$max).' | ';
+ print ''.$langs->trans("FullList").'';
print ' | ';
$var = true;
$i = 0;
@@ -262,7 +262,7 @@ function show_array_last_actions_done($max=5)
$obj = $db->fetch_object($resql);
$var=!$var;
- print "";
+ print ' ';
$staticaction->type_code=$obj->code;
$staticaction->libelle=$obj->label;
|