* adjust the nobr, use span to contain it.

This commit is contained in:
wangchunsheng
2010-02-09 08:32:44 +00:00
parent 7a477de2e8
commit 6577cb55ae
+2 -2
View File
@@ -152,13 +152,13 @@
<legend><?php echo $lang->story->legendProjectAndTask;?></legend>
<table class='table-1 fixed'>
<tr>
<td class='nobr'>
<td>
<?php
foreach($story->tasks as $task)
{
$projectName = $story->projects[$task->project];
echo html::a($this->createLink('project', 'browse', "projectID=$task->project"), $projectName);
echo html::a($this->createLink('task', 'view', "taskID=$task->id"), "#$task->id $task->name") . '<br />';
echo '<span class="nobr">' . html::a($this->createLink('task', 'view', "taskID=$task->id"), "#$task->id $task->name") . '</span><br />';
}
?>
</td>