Changeset 47198 for trunk/src/wp-includes/template-loader.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/template-loader.php
r47018 r47198 49 49 return; 50 50 } elseif ( is_trackback() ) { 51 include( ABSPATH . 'wp-trackback.php' );51 require ABSPATH . 'wp-trackback.php'; 52 52 return; 53 53 } … … 104 104 $template = apply_filters( 'template_include', $template ); 105 105 if ( $template ) { 106 include ( $template );106 include $template; 107 107 } elseif ( current_user_can( 'switch_themes' ) ) { 108 108 $theme = wp_get_theme();
Note: See TracChangeset
for help on using the changeset viewer.