application: Show name as link if not queued

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-11-09 23:16:08 +01:00
committed by Chris Morgan
parent 7e66843cc4
commit 8fa22a5d26

View File

@@ -967,7 +967,7 @@ class Application {
$oTableRow->AddTextCell(print_date(mysqldatetime_to_unixtimestamp($this->sSubmitTime)));
$oTableRow->AddTextCell($oUser->objectMakeLink());
$oTableRow->AddTextCell($sVendor);
$oTableRow->AddTextCell($this->sName);
$oTableRow->AddTextCell(($this->sQueued == 'false') ? $this->objectMakeLink() : $this->sName);
$oOMTableRow = new OMTableRow($oTableRow);
return $oOMTableRow;