diff -Naur Kernel/Output/HTML/Agent.pm Kernel.orig/Output/HTML/Agent.pm
--- Kernel/Output/HTML/Agent.pm	Mon Aug 11 18:00:20 2003
+++ Kernel.orig/Output/HTML/Agent.pm	Thu May 29 18:09:19 2003
@@ -1284,12 +1284,11 @@
     );
     $Param{'QueuesStrg'} = $Self->AgentQueueListOption(
         Data => {
-	  #XXX: 11082003 Limit to group queues
-          $Self->{QueueObject}->GetAllQueues(
-	      UserID => $Self->{UserID},
-	      Type => 'rw',
-	  )
-
+          $Self->{DBObject}->GetTableData(
+            What => 'id, name',
+            Table => 'queue',
+            Valid => 1,
+          )
         },
         Multiple => 1,
         Size => 5,
@@ -1343,11 +1342,11 @@
       );
       $Param{'QueuesStrg'} = $Self->AgentQueueListOption(
         Data => {
-	  #XXX: Limit to own queues
-          $Self->{QueueObject}->GetAllQueues(
-	      UserID => $Self->{UserID},
-	      Type => 'rw',
-	  )
+          $Self->{DBObject}->GetTableData(
+            What => 'id, name',
+            Table => 'queue',
+            Valid => 1,
+          )
         },
         Size => 5,
         Multiple => 1,
