diff --git a/includes/users.php b/includes/users.php
index 51b723c..5da9ff5 100644
--- a/includes/users.php
+++ b/includes/users.php
@@ -4,14 +4,13 @@ print "";
print "
";
foreach (glob("/home/*") as $userpath):
if (is_dir("$userpath/public_html"))
- if (count(scandir("$userpath/public_html")) != 2)
- {
- $user = basename($userpath);
- if(sha1_file($html_skel) == sha1_file("$userpath/public_html/index.html"))
- print"- ~$user
\n";
- else
- print"- ~$user
\n";
- }
+ {
+ $user = basename($userpath);
+ if(sha1_file($html_skel) == sha1_file("$userpath/public_html/index.html"))
+ print"- ~$user
\n";
+ else
+ print"- ~$user
\n";
+ }
endforeach;
print "
";