Make sure trackback template is not double processed.
git-svn-id: https://develop.svn.wordpress.org/trunk@2305 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
0809fbff89
commit
e20c0260e4
@ -182,16 +182,13 @@ if ( (0 == count($posts)) && !is_404() && !is_search()
|
|||||||
header('HTTP/1.x 404 Not Found');
|
header('HTTP/1.x 404 Not Found');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( is_trackback() )
|
|
||||||
$doing_trackback = true;
|
|
||||||
|
|
||||||
// Template redirection
|
// Template redirection
|
||||||
if ( defined('WP_USE_THEMES') && constant('WP_USE_THEMES') ) {
|
if ( defined('WP_USE_THEMES') && constant('WP_USE_THEMES') ) {
|
||||||
do_action('template_redirect');
|
do_action('template_redirect');
|
||||||
if ( is_feed() && empty($doing_rss) ) {
|
if ( is_feed() && empty($doing_rss) ) {
|
||||||
include(ABSPATH . '/wp-feed.php');
|
include(ABSPATH . '/wp-feed.php');
|
||||||
exit;
|
exit;
|
||||||
} else if ( is_trackback() ) {
|
} else if ( is_trackback() && empty($doing_trackback) ) {
|
||||||
include(ABSPATH . '/wp-trackback.php');
|
include(ABSPATH . '/wp-trackback.php');
|
||||||
exit;
|
exit;
|
||||||
} else if ( is_404() && get_404_template() ) {
|
} else if ( is_404() && get_404_template() ) {
|
||||||
@ -233,7 +230,7 @@ if ( defined('WP_USE_THEMES') && constant('WP_USE_THEMES') ) {
|
|||||||
if ( is_feed() && empty($doing_rss) ) {
|
if ( is_feed() && empty($doing_rss) ) {
|
||||||
include(ABSPATH . '/wp-feed.php');
|
include(ABSPATH . '/wp-feed.php');
|
||||||
exit;
|
exit;
|
||||||
} else if ( is_trackback() ) {
|
} else if ( is_trackback() && empty($doing_trackback) ) {
|
||||||
include(ABSPATH . '/wp-trackback.php');
|
include(ABSPATH . '/wp-trackback.php');
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ require_once( dirname(__FILE__) . '/wp-config.php' );
|
|||||||
|
|
||||||
if ( empty($doing_trackback) ) {
|
if ( empty($doing_trackback) ) {
|
||||||
$doing_trackback = true;
|
$doing_trackback = true;
|
||||||
|
$tb = true;
|
||||||
require_once('wp-blog-header.php');
|
require_once('wp-blog-header.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user