From 392650e5659f705bfe546b3b51aeffcdc8d97c95 Mon Sep 17 00:00:00 2001 From: Fabian Schieder Date: Sun, 25 Jan 2026 22:39:55 +0100 Subject: [PATCH] Update profile picture upload target directory path --- upload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upload.php b/upload.php index 126073b..6ab0c75 100644 --- a/upload.php +++ b/upload.php @@ -60,7 +60,7 @@ if (!$mime || !isset($allowedMimeToExt[$mime])) $ext = $allowedMimeToExt[$mime]; -$targetDir = '/FSST/Website/assets/images/profilePictures'; +$targetDir = '/assets/images/profilePictures'; if (!is_dir($targetDir)) { @mkdir($targetDir, 0755, true);