Module: appdb Branch: master Commit: 39e2f1d59d1b6ad9e472516c01474a2e89c184e2 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=39e2f1d59d1b6ad9e472516c0...
Author: Alexander Nicolaysen Sørnes alex@thehandofagony.com Date: Thu Oct 25 14:59:54 2007 +0200
vendor: Only show unqueued apps
---
include/vendor.php | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/include/vendor.php b/include/vendor.php index 59919c9..4ec6597 100644 --- a/include/vendor.php +++ b/include/vendor.php @@ -343,7 +343,9 @@ class Vendor { foreach($this->aApplicationsIds as $iAppId) { $oApp = new Application($iAppId); - echo '<li>'.$oApp->objectMakeLink().'</li>',"\n"; + + if($oApp->sQueued == "false") + echo '<li>'.$oApp->objectMakeLink().'</li>',"\n"; } echo '</ol>',"\n"; }