# This patch file was generated by NetBeans IDE
# This patch can be applied using context Tools: Apply Diff Patch action on respective folder.
# It uses platform neutral UTF-8 encoding.
# Above lines and this line are ignored by the patching process.
Index: drupal/modules/taxonomy/taxonomy.module
--- drupal/modules/taxonomy/taxonomy.module Base (1.594)
+++ drupal/modules/taxonomy/taxonomy.module Locally Modified (Based On 1.594)
@@ -639,14 +639,16 @@
   // languages.
   field_attach_preprocess('taxonomy_term', $term, $variables['content'], $variables);
 
-  $vocabulary_name_css = str_replace('_', '-', $term->vocabulary_machine_name);
+  $vocabulary_machine_name = $term->vocabulary_machine_name;
 
+  $vocabulary_name_css = str_replace('_', '-', $vocabulary_machine_name);
+
   // Gather classes.
   $variables['classes_array'][] = 'vocabulary-' . $vocabulary_name_css;
 
   // Clean up name so there are no underscores.
-  $variables['theme_hook_suggestions'][] = 'taxonomy-term__' . $vocabulary_name_css;
-  $variables['theme_hook_suggestions'][] = 'taxonomy-term__' . $term->tid;
+  $variables['theme_hook_suggestions'][] = 'taxonomy_term__' . $vocabulary_machine_name;
+  $variables['theme_hook_suggestions'][] = 'taxonomy_term__' . $term->tid;
 }
 
 /**
