diff options
author | justdave%syndicomm.com <> | 2003-03-08 17:26:17 +0100 |
---|---|---|
committer | justdave%syndicomm.com <> | 2003-03-08 17:26:17 +0100 |
commit | cd63e63ef7cac942ac11c4007d35725fd38ee9be (patch) | |
tree | 524f464db09c38b56298596cc8594c2d8bade24d | |
parent | 0d52e2ad5be670a22d1ba1ba39d6d5acaaf73811 (diff) | |
download | bugzilla-cd63e63ef7cac942ac11c4007d35725fd38ee9be.tar.gz bugzilla-cd63e63ef7cac942ac11c4007d35725fd38ee9be.tar.xz |
Bug 194345: checksetup.pl would die if you had your params set for a local dot, and the executable didn't exist. The polite error message it was supposed to print works now.
r= burnus, a= justdave
-rwxr-xr-x | checksetup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index a4824f57d..6c3fc57b7 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1315,7 +1315,7 @@ if( Param('webdotbase') && Param('webdotbase') !~ /^https?:/ ) { if(-x Param('webdotbase')) { print "ok: found\n" unless $silent; } else { - print "not a valid executable: " . Param{'webdotbase'} . "\n"; + print "not a valid executable: " . Param('webdotbase') . "\n"; } # Check .htaccess allows access to generated images |