Skip tainted applications during evaluation check on IndexPage
authorTim Düsterhus <duesterhus@woltlab.com>
Tue, 9 Mar 2021 09:50:33 +0000 (10:50 +0100)
committerTim Düsterhus <duesterhus@woltlab.com>
Tue, 9 Mar 2021 09:55:49 +0000 (10:55 +0100)
wcfsetup/install/files/lib/acp/page/IndexPage.class.php

index abf2564d9443c8ace31097986aa1db9daf69cbdf..c56966fe962e8aec09639af13b6e967e075c04a6 100755 (executable)
@@ -102,6 +102,10 @@ class IndexPage extends AbstractPage {
                
                $evaluationExpired = $evaluationPending = [];
                foreach (ApplicationHandler::getInstance()->getApplications() as $application) {
+                       if ($application->isTainted) {
+                               continue;
+                       }
+                       
                        if ($application->getPackage()->package === 'com.woltlab.wcf') {
                                continue;
                        }