Update index.php

remove extra ~
This commit is contained in:
deepend-tildeclub 2025-02-11 20:33:12 -07:00 committed by GitHub
parent 22551d20e0
commit 4efa5ba4ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ include __DIR__.'/../header.php';
foreach (glob("/home/*") as $user) foreach (glob("/home/*") as $user)
{ {
$user = basename($user); $user = basename($user);
echo '<a href="/~'.$user.'/">~'.$user.'</a>'; echo '<a href="/~'.$user.'/">'.$user.'</a>';
} }
?> ?>
</div> </div>