From: justdave%syndicomm.com <> Date: Sat, 8 Mar 2003 16:26:17 +0000 (+0000) Subject: Bug 194345: checksetup.pl would die if you had your params set for a local dot, and... X-Git-Tag: bugzilla-2.17.4~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd63e63ef7cac942ac11c4007d35725fd38ee9be;p=thirdparty%2Fbugzilla.git 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 --- diff --git a/checksetup.pl b/checksetup.pl index a4824f57dd..6c3fc57b7b 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