- added freebsd to configfiles array so it shows up in the menu, fixes #97

- check for mysqldump also in /usr/local/bin (freebsd), fixes #99
This commit is contained in:
Michael Kaufmann (d00p)
2010-03-29 12:06:50 +00:00
parent 7bea15a7a9
commit 230c2a1cf3
2 changed files with 19 additions and 6 deletions

View File

@@ -45,6 +45,6 @@ else
$cfgPath = 'lib/configfiles/';
$configfiles = Array();
$configfiles = array_merge(include $cfgPath . 'lenny.inc.php', include $cfgPath . 'etch.inc.php', include $cfgPath . 'hardy.inc.php', include $cfgPath . 'gentoo.inc.php', include $cfgPath . 'suse10.inc.php');
$configfiles = array_merge(include $cfgPath . 'lenny.inc.php', include $cfgPath . 'etch.inc.php', include $cfgPath . 'hardy.inc.php', include $cfgPath . 'gentoo.inc.php', include $cfgPath . 'suse10.inc.php', include $cfgPath . 'freebsd.inc.php');
?>