3 Commits

Author SHA1 Message Date
df15387f84 escape xd 2025-10-08 13:44:16 +02:00
5ce36803b8 Merge pull request 'users tab' (#5) from feature/users-tab into main
Reviewed-on: #5
Reviewed-by: v0id1st <v0id1st@tylda.org>
2025-10-08 13:42:29 +02:00
ef777eb779 register 2025-10-08 13:33:14 +02:00
2 changed files with 2 additions and 1 deletions

View File

@@ -85,3 +85,4 @@ Poniższy formularz trafi do naszych administratorów, którzy go ocenią. Potra
} }
?> ?>

View File

@@ -9,7 +9,7 @@ $host=htmlspecialchars($_SERVER['SERVER_NAME']);
//$host=""; //$host="";
foreach (scandir("/home/") as $file) { foreach (scandir("/home/") as $file) {
if (in_array($file, array('.', '..'))) continue; if (in_array($file, array('.', '..'))) continue;
echo "<li><a href="/~$file">~$file</a></li>"; echo "<li><a href=\"/~$file\">~$file</a></li>";
} }
?> ?>