Changeset 8030
- Timestamp:
- 01/07/2019 02:50:36 AM (6 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-plugin-directory-compat.php
r7243 r8030 72 72 $slug = get_query_var( 'wporg_plugin' ); 73 73 if ( ! $slug ) { 74 status_header( 404 ); 74 75 return; 75 76 } … … 77 78 $plugin = $this->get_object( $slug ); 78 79 if ( ! $plugin ) { 80 status_header( 404 ); 79 81 return; 80 82 } -
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-theme-directory-compat.php
r7243 r8030 72 72 $slug = get_query_var( 'wporg_theme' ); 73 73 if ( ! $slug ) { 74 status_header( 404 ); 74 75 return; 75 76 } … … 77 78 $theme = $this->get_object( $slug ); 78 79 if ( ! $theme ) { 80 status_header( 404 ); 79 81 return; 80 82 } else {
Note: See TracChangeset
for help on using the changeset viewer.