Skip to content

Commit

Permalink
Patch to queue view to show items that are both approved and deleted …
Browse files Browse the repository at this point in the history
…at the

 same time, so queue admins can clean them up.
  • Loading branch information
icculus committed Oct 10, 2002
1 parent 140b8ca commit e6053d5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion php_interface/queue.php
Expand Up @@ -176,7 +176,10 @@ function output_queue_rows($sock, $showall = 0)
foreach ($query as $item)
{
if ((!$showall) && ($item['approved']))
continue;
{
if (!$item['deleted']) // always show deleted items.
continue;
} // if

$item_count++;

Expand Down

0 comments on commit e6053d5

Please sign in to comment.