From 574587ca62c1743c5cb855a0241d1db9723ce88c Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Tue, 29 Jan 2013 15:32:54 +0100 Subject: reportall: Do not show deleted users --- sqlbox/reportall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sqlbox') 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; -- cgit