vendor: Only show unqueued apps

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-10-25 14:59:54 +02:00
committed by Chris Morgan
parent dba90a0924
commit 39e2f1d59d

View File

@@ -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";
}