fix page-tasks icon to show open tasks, not all

SPR-936
This commit is contained in:
Michael Große 2017-04-20 12:39:10 +02:00
commit df867fe362
No known key found for this signature in database
GPG key ID: 7E31028FBFEACC79

View file

@ -35,7 +35,7 @@ if($doPlugin !== null) {
$class = 'do_late';
$title = sprintf(tpl_getLang('tasks_page_late'), $count['undone'], $count['late']);
}
$markup = "<li class=\"plugin__do_pagetasks $class\" title=\"$title\"><strong><span class=\"prefix\">" . tpl_getLang('prefix_tasks_page') . " </span><span class=\"num\">$num</span></strong></li>";
$markup = "<li class=\"plugin__do_pagetasks $class\" title=\"$title\"><strong><span class=\"prefix\">" . tpl_getLang('prefix_tasks_page') . " </span><span class=\"num\">{$count['undone']}</span></strong></li>";
echo $markup;
}