* add title for the task.

This commit is contained in:
chencongzhi520@gmail.com
2013-05-02 06:27:37 +00:00
parent 62eb535307
commit 98748b2ef1

View File

@@ -7,7 +7,7 @@
<?php
foreach($tasks as $task)
{
echo "<tr><td class='nobr'>" . "#$task->id " . html::a($this->createLink('task', 'view', "id=$task->id"), $task->name) . "</td><td width='5'</td></tr>";
echo "<tr><td class='nobr'>" . "#$task->id " . html::a($this->createLink('task', 'view', "id=$task->id"), $task->name, '', "title=$task->name") . "</td><td width='5'</td></tr>";
}
?>
</table>