diff --git a/htdocs/index.php b/htdocs/index.php
index ae4ec72a901..195d583046f 100644
--- a/htdocs/index.php
+++ b/htdocs/index.php
@@ -548,7 +548,7 @@ if (! empty($valid_dashboardlines))
$boxwork.='
| ';
foreach($valid_dashboardlines as $board)
{
- if (empty($boad->nbtodo)) $nbworkboardempty++;
+ if (empty($board->nbtodo)) $nbworkboardempty++;
$textlate = $langs->trans("NActionsLate",$board->nbtodolate);
$textlate.= ' ('.$langs->trans("Late").' = '.$langs->trans("DateReference").' > '.$langs->trans("DateToday").' '.(ceil($board->warning_delay) >= 0 ? '+' : '').ceil($board->warning_delay).' '.$langs->trans("days").')';
|