Switch from spaces to   to prevent the entries in the processing column from wrapping

This commit is contained in:
Chris Morgan
2007-08-05 19:26:02 +00:00
committed by WineHQ
parent af3c857f72
commit 25c0346ce3

View File

@@ -172,12 +172,12 @@ class ObjectManager
$shDeleteLink = "";
if($this->oTableRow->bHasDeleteLink)
{
$shDeleteLink = ' [ <a href="'.$this->makeUrl("delete", $oObject->objectGetId()).
'">delete</a> ]';
$shDeleteLink = ' [&nbsp;<a href="'.$this->makeUrl("delete", $oObject->objectGetId()).
'">delete</a>&nbsp;]';
}
$oTableCell = new TableCell('[ <a href="'.$this->makeUrl("edit",
$oObject->objectGetId()).'">'.$sEditLinkLabel.'</a> ]'.$shDeleteLink);
$oTableCell = new TableCell('[&nbsp;<a href="'.$this->makeUrl("edit",
$oObject->objectGetId()).'">'.$sEditLinkLabel.'</a>&nbsp;]'.$shDeleteLink);
$this->oTableRow->AddCell($oTableCell);
}