Posted by bnobleman on October 30, 2009 at 6:32pm
| Project: | Taxonomy context |
| Version: | 5.x-2.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
When used with taxonomy_image, on the category page, the image links to the recently added term.
The patch:
Index: taxonomy_context.module
===================================================================
--- taxonomy_context.module (revision 1984)
+++ taxonomy_context.module (working copy)
@@ -488,7 +488,7 @@
break;
}
if (module_exists('taxonomy_image')) {
- $term_output .= l(taxonomy_image_display($term->tid), taxonomy_term_path($subterm), null, null, null, null, true);
+ $term_output .= taxonomy_image_display($term->tid);
}