diff --git a/includes/users.php b/includes/users.php
index a4ef7c5..84980f8 100644
--- a/includes/users.php
+++ b/includes/users.php
@@ -2,7 +2,9 @@
print "";
print "
";
foreach (glob("/home/*") as $user):
- if (is_dir($user . "/public_html") && (file_exists($user . "/public_html/index.html") || file_exists($user . "/public_html/index.php")))
+ if (is_dir($user . "/public_html"))
+ if (file_exists($user . "/public_html/index.html") || file_exists($user . "/public_html/index.php"))
+ if (!file_exists($user . "/public_html/coming_soon"))
{
$user = basename($user);
print"- ~$user
";