Add missing dash. Bug 713.

git-svn-id: https://develop.svn.wordpress.org/trunk@2106 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-01-19 16:15:45 +00:00
parent 007eb334c5
commit 6f9ab24c3f
1 changed files with 1 additions and 1 deletions

View File

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