From 9aba2af4747f87bbde85dc558b7a1e6951aaebd0 Mon Sep 17 00:00:00 2001 From: emc3 Date: Tue, 15 Feb 2005 19:55:12 +0000 Subject: [PATCH] I'm pretty sure that this should be get_theme_root(), not get_theme_base() git-svn-id: http://svn.automattic.com/wordpress/trunk@2350 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 9e9389aa5e..7897ba426a 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1587,7 +1587,7 @@ function get_comments_popup_template() { if ( file_exists( TEMPLATEPATH . '/comments-popup.php') ) $template = TEMPLATEPATH . '/comments-popup.php'; else - $template = get_theme_base() . '/default/comments-popup.php'; + $template = get_theme_root() . '/default/comments-popup.php'; return apply_filters('comments_popup_template', $template); }