From 057627e640b569c66eb6f1005685300c55b6dff9 Mon Sep 17 00:00:00 2001 From: dd32 Date: Mon, 4 Oct 2010 09:17:18 +0000 Subject: [PATCH] Do not load Taxonomy cache & Postmeta cache in get_boundary_post(). Fixes #15028 git-svn-id: http://svn.automattic.com/wordpress/trunk@15701 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/link-template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index f657c6927..44eb5a87c 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -1176,7 +1176,7 @@ function get_boundary_post($in_same_cat = false, $excluded_categories = '', $sta $order = $start ? 'ASC' : 'DESC'; - return get_posts( array('numberposts' => 1, 'category' => $categories, 'order' => $order) ); + return get_posts( array('numberposts' => 1, 'category' => $categories, 'order' => $order, 'update_post_term_cache' => false, 'update_post_meta_cache' => false) ); } /** @@ -1193,7 +1193,7 @@ function get_boundary_post($in_same_cat = false, $excluded_categories = '', $sta * @return string */ function get_boundary_post_rel_link($title = '%title', $in_same_cat = false, $excluded_categories = '', $start = true) { - $posts = get_boundary_post($in_same_cat,$excluded_categories,$start); + $posts = get_boundary_post($in_same_cat, $excluded_categories, $start); // If there is no post stop. if ( empty($posts) ) return;