From 901c2d3a8ad01b13111145ec63234f3bd6f02871 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Fri, 25 Apr 2003 04:17:29 +0000 Subject: Bug 197153: Fix for insecure temporary filename handling. Patch by Brad Baetz r= justdave, gerv a= justdave --- defparams.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'defparams.pl') diff --git a/defparams.pl b/defparams.pl index 246342e58..ed1830581 100644 --- a/defparams.pl +++ b/defparams.pl @@ -99,7 +99,7 @@ sub check_webdotbase { # Check .htaccess allows access to generated images if(-e "data/webdot/.htaccess") { open HTACCESS, "data/webdot/.htaccess"; - if(! grep(/png/,)) { + if(! grep(/ \\\.png\$/,)) { return "Dependency graph images are not accessible.\nDelete data/webdot/.htaccess and re-run checksetup.pl to rectify.\n"; } close HTACCESS; -- cgit v1.2.3-24-g4f1b