summaryrefslogtreecommitdiff
path: root/sqlbox
diff options
context:
space:
mode:
Diffstat (limited to 'sqlbox')
-rw-r--r--sqlbox/reportall.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlbox/reportall.php b/sqlbox/reportall.php
index 41c6d78..8bd4a12 100644
--- a/sqlbox/reportall.php
+++ b/sqlbox/reportall.php
@@ -36,7 +36,7 @@ $table = new html_table;
$table->head = array_merge(array("Nutzer"), $b);
$table->align = array_merge(array("left"), array_fill(0, count($b), 'center'));
-$users = $DB->get_records("user");
+$users = $DB->get_records("user", array('deleted'=>'0'));
foreach ($users as $user) {
if (isguestuser($user))
continue;