From: Marcel de Rooy Date: Mon, 15 Apr 2013 13:05:54 +0000 (+0200) Subject: 7368 Typo in edithelp.pl warning X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=0f92532b52da70bea81babc1c02fdc8fc045024c;p=koha.git 7368 Typo in edithelp.pl warning Typo: able save => able to save. Signed-off-by: Marcel de Rooy Signed-off-by: Jared Camins-Esakov --- diff --git a/edithelp.pl b/edithelp.pl index 28586b3910..de4e9b12c1 100755 --- a/edithelp.pl +++ b/edithelp.pl @@ -96,7 +96,7 @@ elsif ( $type eq 'modify' ) { $error = "Cannot read file: '$file'."; } else { (-w $file) or $error = - "WARNING: You will not be able save, because your webserver cannot write to '$file'. Contact your admin about help file permissions."; + "WARNING: You will not be able to save, because your webserver cannot write to '$file'. Contact your admin about help file permissions."; open (my $fh, '<', $file) or die "Cannot read file '$file'"; # unlikely death, since we just checked my $help = ''; while ( <$fh> ) {