From 89bebf4f90cfca75b8ac4668805d42b510b0cdeb Mon Sep 17 00:00:00 2001 From: Adam Amstrong Date: Tue, 11 Oct 2011 12:51:19 +0000 Subject: [PATCH] remove hardcoded dot git-svn-id: http://www.observium.org/svn/observer/trunk@2681 61d68cd4-352d-0410-923a-c4978735b2b8 --- html/map.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/map.php b/html/map.php index fd8f9f3844..ebe243a56c 100755 --- a/html/map.php +++ b/html/map.php @@ -177,7 +177,7 @@ if (isset($_GET['format']) && preg_match("/^[a-z]*$/", $_GET['format'])) if ($links > 30) ### Unflatten if there are more than 10 links. beyond that it gets messy { - $maptool = $config['unflatten'] . ' -f -l 5 | ' . $config['sfdp'] . ' -Gpack -Gcharset=latin1 | dot'; + $maptool = $config['unflatten'] . ' -f -l 5 | ' . $config['sfdp'] . ' -Gpack -Gcharset=latin1 | '.$config['dot']; } else { $maptool = $config['dot']; }