summaryrefslogtreecommitdiffstats
path: root/wp-inst/wp-includes/template-loader.php
diff options
context:
space:
mode:
authormatt <matt@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-05-15 03:19:56 +0000
committermatt <matt@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-05-15 03:19:56 +0000
commit034694eb53dd71a980745f5594509890fd761998 (patch)
treec85517e8af3fce163f1d183afdf7c9ac7094d84e /wp-inst/wp-includes/template-loader.php
parenta72266931b88c8fa300d2e29a69a2bb38a70654a (diff)
downloadwordpress-mu-034694eb53dd71a980745f5594509890fd761998.tar.gz
wordpress-mu-034694eb53dd71a980745f5594509890fd761998.tar.xz
wordpress-mu-034694eb53dd71a980745f5594509890fd761998.zip
Lots and lots of changes.
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@543 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst/wp-includes/template-loader.php')
-rw-r--r--wp-inst/wp-includes/template-loader.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-inst/wp-includes/template-loader.php b/wp-inst/wp-includes/template-loader.php
index e3160f7..3f799e1 100644
--- a/wp-inst/wp-includes/template-loader.php
+++ b/wp-inst/wp-includes/template-loader.php
@@ -2,7 +2,7 @@
if ( defined('WP_USE_THEMES') && constant('WP_USE_THEMES') ) {
do_action('template_redirect');
if ( is_feed() ) {
- include(ABSPATH . '/wp-feed.php');
+ do_feed();
exit;
} else if ( is_trackback() ) {
include(ABSPATH . '/wp-trackback.php');
@@ -56,7 +56,7 @@ if ( defined('WP_USE_THEMES') && constant('WP_USE_THEMES') ) {
} else {
// Process feeds and trackbacks even if not using themes.
if ( is_feed() ) {
- include(ABSPATH . '/wp-feed.php');
+ do_feed();
exit;
} else if ( is_trackback() ) {
include(ABSPATH . '/wp-trackback.php');