Make WordPress Core

Ticket #14348: 14348-5.diff

File 14348-5.diff, 649 bytes (added by mbijon, 13 years ago)

Basically 14348-4.diff, just without the constant

  • wp-includes/template-loader.php

     
    66if ( defined('WP_USE_THEMES') && WP_USE_THEMES )
    77        do_action('template_redirect');
    88
     9/**
     10 * Halt template load for HEAD requests. Performance bump by eliminating output
     11 *
     12 * @since 3.5.0
     13 */
     14if ( 'HEAD' === $_SERVER['REQUEST_METHOD'] && apply_filters( 'exit_on_http_head', true ) )
     15        exit();
     16
    917// Process feeds and trackbacks even if not using themes.
    1018if ( is_robots() ) :
    1119        do_action('do_robots');