View | Details | Raw Unified | Return to bug 7368
Collapse All | Expand All

(-)a/edithelp.pl (-2 / +1 lines)
Lines 96-102 elsif ( $type eq 'modify' ) { Link Here
96
		$error = "Cannot read file: '$file'.";
96
		$error = "Cannot read file: '$file'.";
97
	} else {
97
	} else {
98
		(-w $file) or $error = 
98
		(-w $file) or $error = 
99
			"WARNING: You will not be able save, because your webserver cannot write to '$file'. Contact your admin about help file permissions.";
99
			"WARNING: You will not be able to save, because your webserver cannot write to '$file'. Contact your admin about help file permissions.";
100
    	open (my $fh, '<', $file) or die "Cannot read file '$file'";		# unlikely death, since we just checked
100
    	open (my $fh, '<', $file) or die "Cannot read file '$file'";		# unlikely death, since we just checked
101
		my $help = '';
101
		my $help = '';
102
        while ( <$fh> ) {
102
        while ( <$fh> ) {
103
- 

Return to bug 7368