summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
Diffstat (limited to 'defparams.pl')
-rw-r--r--defparams.pl2
1 files changed, 1 insertions, 1 deletions
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/,<HTACCESS>)) {
+ if(! grep(/ \\\.png\$/,<HTACCESS>)) {
return "Dependency graph images are not accessible.\nDelete data/webdot/.htaccess and re-run checksetup.pl to rectify.\n";
}
close HTACCESS;