From 6f9ab24c3f67567f82c1d1f71f65ef12c9d77b10 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 19 Jan 2005 16:15:45 +0000 Subject: [PATCH] Add missing dash. Bug 713. git-svn-id: https://develop.svn.wordpress.org/trunk@2106 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-blog-header.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-blog-header.php b/wp-blog-header.php index de318eb564..d12745b4fd 100644 --- a/wp-blog-header.php +++ b/wp-blog-header.php @@ -238,7 +238,7 @@ if ($pagenow == 'index.php') { include(get_page_template()); exit; } else if ( is_category() && file_exists("$wp_template_dir/category-" . get_query_var('cat') . '.php') ) { - include("$wp_template_dir/category" . get_query_var('cat') . '.php'); + include("$wp_template_dir/category-" . get_query_var('cat') . '.php'); exit; } else if ( is_category() && file_exists("$wp_template_dir/category.php") ) { include("$wp_template_dir/category.php");