Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
do not display guest when browsing users
  • Loading branch information
skodak committed Sep 24, 2006
1 parent 38d2d43 commit 856f7cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/user.php
Expand Up @@ -315,8 +315,8 @@
$table->align = array ("left", "left", "left", "left", "left", "center", "center", "center");
$table->width = "95%";
foreach ($users as $user) {
if ($user->username == 'changeme') {
continue; // do not dispaly dummy new user
if ($user->username == 'changeme' or $user->username == 'guest') {
continue; // do not dispaly dummy new user and guest here
}

if ($user->id == $USER->id) {
Expand Down

0 comments on commit 856f7cb

Please sign in to comment.