diff --git a/php/index.php b/php/index.php
index d914979ceac89e6ada43eb1d9897de0c282d49ad..93b6a85911141182672ac0d392641723e2d318b8 100644
--- a/php/index.php
+++ b/php/index.php
@@ -493,14 +493,14 @@ function printMilestoneDoneWithTasks($color, $currentMilestone, $isFirstMileston
 				if($numberOfOpenSubtasks == 0)
 				{
 					echo '<li>' .
-						'<div class="collapsible-header bold"><i class="material-icons green-text">check</i>Layout<span class="right">' . sizeof($subtasks) . '/' . sizeof($subtasks) . '</span></div>' .
+						'<div class="collapsible-header bold"><i class="material-icons green-text">check</i>'.$currentTask['Title'].'<span class="right">' . sizeof($subtasks) . '/' . sizeof($subtasks) . '</span></div>' .
 						'<div class="collapsible-body">' .
 						'<ul class="collapsible white margin-left-and-right no-shadow margin-top-and-bottom" data-collapsible="accordion">';
 				}
 				else
 				{
 					echo '<li>' .
-						'<div class="collapsible-header bold"><i class="material-icons red-text">build</i>Layout<span class="right">' . (sizeof($subtasks) - $numberOfOpenSubtasks) . '/' . sizeof($subtasks) . '</span></div>' .
+						'<div class="collapsible-header bold"><i class="material-icons red-text">build</i>'.$currentTask['Title'].'<span class="right">' . (sizeof($subtasks) - $numberOfOpenSubtasks) . '/' . sizeof($subtasks) . '</span></div>' .
 						'<div class="collapsible-body">' .
 						'<ul class="collapsible white margin-left-and-right no-shadow margin-top-and-bottom" data-collapsible="accordion">';
 				}