Making WordPress.org

Opened 5 years ago

Closed 5 years ago

Last modified 3 years ago

#4795 closed defect (bug) (invalid)

Give make.wordpress.org/events/ a nicer template

Reported by: jonoaldersonwp's profile jonoaldersonwp 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)

#1 @dd32
5 years ago

This should be reported upstream to Core.

#2 @jonoaldersonwp
5 years ago

Who/where? :)

#3 @Otto42
5 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.