summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-08-26 08:29:21 +0200
committerDylan William Hardison <dylan@hardison.net>2018-08-26 08:29:21 +0200
commit17502a9d155ecdff4b429b6fd65906b2069486b8 (patch)
tree39d43ee6f7725c6f838f6b8fa335e1943118726e
parent07b6f93875c4c5ee12b36dea93911660693d1b32 (diff)
downloadbugzilla-17502a9d155ecdff4b429b6fd65906b2069486b8.tar.gz
bugzilla-17502a9d155ecdff4b429b6fd65906b2069486b8.tar.xz
remove error pages for now
-rw-r--r--Bugzilla/Install/Filesystem.pm31
1 files changed, 0 insertions, 31 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm
index 1da33882b..cb1b1ad15 100644
--- a/Bugzilla/Install/Filesystem.pm
+++ b/Bugzilla/Install/Filesystem.pm
@@ -382,37 +382,6 @@ sub FILESYSTEM {
# Create static error pages.
$create_dirs{"errors"} = DIR_CGI_READ;
- $create_files{"errors/401.html"} = {
- perms => CGI_READ,
- overwrite => 1,
- contents => _error_page(
- 401, 'Authentication Required',
- "This server could not verify that you are authorized to access
- that url. you either supplied the wrong credentials (e.g., bad
- password), or your browser doesn't understand how to supply the
- credentials required.")
- };
- $create_files{"errors/403.html"} = {
- perms => CGI_READ,
- overwrite => 1,
- contents => _error_page(
- 403, 'Access Denied',
- "Access to the requested resource has been denied.")
- };
- $create_files{"errors/404.html"} = {
- perms => CGI_READ,
- overwrite => 1,
- contents => _error_page(
- 404, 'Object Not Found',
- "The requested URL was not found on this server.")
- };
- $create_files{"errors/500.html"} = {
- perms => CGI_READ,
- overwrite => 1,
- contents => _error_page(
- 500, 'Internal Server Error',
- "The server encountered an internal error and was unable to complete your request.")
- };
# Because checksetup controls the creation of index.html separately
# from all other files, it gets its very own hash.