diff --git a/public_html/deployment/classes/projectlist.class.php b/public_html/deployment/classes/projectlist.class.php
index 7b84640710c50170d43e11465427b510ebef6c6d..92128f5340820b6aa5332304ec78ab69f279ca68 100644
--- a/public_html/deployment/classes/projectlist.class.php
+++ b/public_html/deployment/classes/projectlist.class.php
@@ -81,7 +81,18 @@ class projectlist extends base{
         foreach (array_keys($oPrj1->getPhases()) as $sPhase) {
             $sPhaseFilter.='<option value="' . $sPhase . '" >' . $sPhase . '</option>';
         }
+
+        // #6611 Übersichtsseite nach Project Name sortieren
+        // foreach ($oPrj1->getProjects() as $sPrj) {
+
+        $aProjectLabels=[];
         foreach ($oPrj1->getProjects() as $sPrj) {
+            $oPrj = new project($sPrj);
+            $aProjectLabels[$oPrj->getLabel().'-'.$sPrj]=$sPrj;
+        }
+        ksort($aProjectLabels);
+        
+        foreach (array_values($aProjectLabels) as $sPrj) {
             $oPrj = new project($sPrj);
             $sPrjFilter.='<option value="' . $sPrj . '">' . $oPrj->getLabel() . '</option>';