Module: appdb Branch: master Commit: 8fa22a5d2643de651884739bdb54806ccd7e1267 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=8fa22a5d2643de651884739bd...
Author: Alexander Nicolaysen Sørnes alex@thehandofagony.com Date: Fri Nov 9 23:16:08 2007 +0100
application: Show name as link if not queued
---
include/application.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/application.php b/include/application.php index c2e2501..9d723dd 100644 --- a/include/application.php +++ b/include/application.php @@ -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;