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
This commit is contained in:
emc3 2005-02-15 19:55:12 +00:00
parent 0be171b080
commit 9aba2af474
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}