Alexander Nicolaysen Sørnes : vendor: Only show unqueued apps

Chris Morgan cmorgan at winehq.org
Thu Oct 25 18:10:46 CDT 2007


Module: appdb
Branch: master
Commit: 39e2f1d59d1b6ad9e472516c01474a2e89c184e2
URL:    http://source.winehq.org/git/appdb.git/?a=commit;h=39e2f1d59d1b6ad9e472516c01474a2e89c184e2

Author: Alexander Nicolaysen Sørnes <alex at 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";
         }




More information about the wine-cvs mailing list