From 2cb1f36df97339b4e93c1269fe36668e47f37223 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sun, 2 Jan 2005 02:50:03 +0000 Subject: [PATCH] Use new default theme path. git-svn-id: https://develop.svn.wordpress.org/trunk@2033 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/comment-functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/comment-functions.php b/wp-includes/comment-functions.php index 902fe0ce66..a06458485e 100644 --- a/wp-includes/comment-functions.php +++ b/wp-includes/comment-functions.php @@ -15,7 +15,7 @@ function comments_template() { if ( file_exists( TEMPLATEPATH . '/comments.php') ) require( TEMPLATEPATH . '/comments.php'); else - require( ABSPATH . 'wp-includes/wp-comments.php'); + require( ABSPATH . 'wp-content/themes/default/comments.php'); endif; } @@ -71,7 +71,7 @@ function comments_popup_script($width=400, $height=400, $file='') { if ( file_exists( TEMPLATEPATH . '/comments-popup.php') ) $wpcommentspopupfile = str_replace(ABSPATH, '', TEMPLATEPATH . '/comments-popup.php'); else - $wpcommentspopupfile = 'wp-includes/wp-comments-popup.php'; + $wpcommentspopupfile = 'wp-content/themes/default/comments-popup.php'; } else { $wpcommentspopupfile = $file; }