summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorvladd%bugzilla.org <>2006-06-19 21:29:16 +0200
committervladd%bugzilla.org <>2006-06-19 21:29:16 +0200
commitbc3e035e6ccffe5a2d1e26da78bcd2d3c4fab362 (patch)
tree6bd49de5d5751192e035987d9596049ecec33d84 /checksetup.pl
parente64d1b370f305922d14791b3a4ab172e8f8c4a9b (diff)
downloadbugzilla-bc3e035e6ccffe5a2d1e26da78bcd2d3c4fab362.tar.gz
bugzilla-bc3e035e6ccffe5a2d1e26da78bcd2d3c4fab362.tar.xz
Spelling in code comments patch: 'overriden' -> 'overridden' in checksetup.pl; patch by Vlad Dascalu <vladd@bugzilla.org>.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 7e77ac711..9ad99d02e 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -1110,7 +1110,7 @@ END
print "Creating $datadir/.htaccess...\n";
open HTACCESS, '>', "$datadir/.htaccess";
print HTACCESS <<'END';
-# nothing in this directory is retrievable unless overriden by an .htaccess
+# nothing in this directory is retrievable unless overridden by an .htaccess
# in a subdirectory; the only exception is duplicates.rdf, which is used by
# duplicates.xul and must be loadable over the web
deny from all
@@ -1126,7 +1126,7 @@ END
print "Creating $templatedir/.htaccess...\n";
open HTACCESS, '>', "$templatedir/.htaccess";
print HTACCESS <<'END';
-# nothing in this directory is retrievable unless overriden by an .htaccess
+# nothing in this directory is retrievable unless overridden by an .htaccess
# in a subdirectory
deny from all
END