diff --git a/includes/users.php b/includes/users.php
index c58a0ae..9d072ec 100644
--- a/includes/users.php
+++ b/includes/users.php
@@ -1,14 +1,16 @@
";
print "
";
-foreach (glob("/home/*") as $user):
- if (is_dir($user . "/public_html"))
- if (!file_exists($user . "/public_html/coming_soon"))
- if (count(scandir($user."/public_html")) != 2)
- {
- $user = basename($user);
- print"- ~$user
";
- }
+foreach (glob("/home/*") as $userpath):
+ if (is_dir("$userpath/public_html"))
+ {
+ $user = basename($userpath);
+ if(sha1_file($html_skel) == sha1_file("$userpath/public_html/index.html") || count(scandir("$userpath/public_html")) == 2)
+ print"- ~$user
\n";
+ else
+ print"- ~$user
\n";
+ }
endforeach;
print "
";