diff --git src/wp-includes/template.php src/wp-includes/template.php
index 14e7eba..380bb47 100644
--- src/wp-includes/template.php
+++ src/wp-includes/template.php
@@ -174,9 +174,8 @@ function get_category_template() {
 
 	$templates = array();
 
-  if ( ! empty( $category->slug ) ) {
-    $decoded_slug = urldecode($category->slug);
-		$templates[] = "category-{$decoded_slug}.php";
+	if ( ! empty( $category->slug ) ) {
+		$templates[] = "category-{$category->slug}.php";
 		$templates[] = "category-{$category->term_id}.php";
 	}
 	$templates[] = 'category.php';
