From 62caf161538f157d1cb0b810e0313d39e6e10e8e Mon Sep 17 00:00:00 2001 From: Eric Espie Date: Tue, 21 May 2024 14:20:30 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B07364=20-=20Code=20hardening?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/simplegraph.class.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/simplegraph.class.inc.php b/core/simplegraph.class.inc.php index f0487480b..2e7f0c71e 100644 --- a/core/simplegraph.class.inc.php +++ b/core/simplegraph.class.inc.php @@ -537,7 +537,7 @@ EOF } else { - throw new Exception('graphviz not found (executable path: '.$sDotExecutable.')'); + throw new Exception('graphviz not found'); } return $sHtml; } @@ -592,7 +592,7 @@ EOF } else { - throw new Exception('graphviz not found (executable path: '.$sDotExecutable.')'); + throw new Exception('graphviz not found'); } return $sHtml; }