From 1862b846123f02f521d0aae5f6c2ea5538d073df Mon Sep 17 00:00:00 2001 From: schucan Date: Thu, 1 May 2025 16:14:00 +0200 Subject: [PATCH] Mute chmod warning --- adminer/include/functions.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/include/functions.inc.php b/adminer/include/functions.inc.php index b4aeb6a9..4a3dd50b 100644 --- a/adminer/include/functions.inc.php +++ b/adminer/include/functions.inc.php @@ -685,7 +685,7 @@ function file_open_lock(string $filename) { if (!$fp) { return; } - chmod($filename, 0660); + @chmod($filename, 0660); // @ - may not be permitted if (!flock($fp, LOCK_EX)) { fclose($fp); return;