From f3a898ec9e9e677c94f05e2fc3bb399f89748abe Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 22 Feb 2023 10:23:35 +0100 Subject: [PATCH] wip #5524 --- src/PDFTools.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PDFTools.php b/src/PDFTools.php index bada303..aa97a4b 100644 --- a/src/PDFTools.php +++ b/src/PDFTools.php @@ -40,7 +40,7 @@ class PDFTools public static function chmodExec($path) { if (is_file($path)) { - chmod($path, 0755); + @chmod($path, 0755); } } -- 2.39.5