#4795 closed defect (bug) (invalid)
Give make.wordpress.org/events/ a nicer template
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | lowest | |
| Component: | Make (Get Involved) / P2 | Keywords: | seo analytics |
| Cc: |
Description
This (correctly) returns a 410 status, but does so on a 'raw' template.
This should return a modified version of the 404 template.
Change History (3)
#3
@
6 years ago
- Resolution set to invalid
- Status changed from new to closed
Yes, this is a straight multisite thing in core. See wp-includes\ms-load.php.
if ( '1' == $blog->deleted ) {
if ( file_exists( WP_CONTENT_DIR . '/blog-deleted.php' ) ) {
return WP_CONTENT_DIR . '/blog-deleted.php';
} else {
wp_die( __( 'This site is no longer available.' ), '', array( 'response' => 410 ) );
}
}
A core trac ticket would be appropriate if change to this is desirable.
Note: See
TracTickets for help on using
tickets.
This should be reported upstream to Core.