From: bugreport%peshkin.net <> Date: Mon, 23 Dec 2002 09:53:33 +0000 (+0000) Subject: Backing out patch from bug 186383 because it broke quicksearch X-Git-Tag: bugzilla-2.16.3~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=975da6738c65582ca09749e7aba8267cea81f680;p=thirdparty%2Fbugzilla.git Backing out patch from bug 186383 because it broke quicksearch --- diff --git a/checksetup.pl b/checksetup.pl index 66dce8744d..4d3c1e1587 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -754,27 +754,12 @@ if ($my_create_htaccess) { open HTACCESS, ">.htaccess"; print HTACCESS <<'END'; # don't allow people to retrieve non-cgi executable files or our private data - + deny from all END close HTACCESS; chmod $fileperm, ".htaccess"; - } else { - # 2002-12-21 Bug 186383 - open HTACCESS, ".htaccess"; - my $oldaccess = ""; - while () { - $oldaccess .= $_; - } - close HTACCESS; - if ($oldaccess =~ s/(localconfig)(\|)/$1.*$2/) { - print "Repairing .htaccess...\n"; - open HTACCESS, ">.htaccess"; - print HTACCESS $oldaccess; - close HTACCESS; - } - } if (!-e "data/.htaccess") { print "Creating data/.htaccess...\n";