Ticket #21931: 21931.patch
File 21931.patch, 678 bytes (added by , 9 years ago) |
---|
-
wp-includes/template-loader.php
IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8
87 87 if ( $template = apply_filters( 'template_include', $template ) ) { 88 88 include( $template ); 89 89 } elseif ( current_user_can( 'install_themes' ) ) { 90 $theme = wp_get_theme(); 91 if ( $theme->errors() ) { 92 wp_die( $theme->errors() ); 93 } 90 wp_die( __( 'Template is missing.' ) ); 94 91 } 95 92 return; 96 93 endif;