Opened 19 years ago
Closed 19 years ago
#484 closed defect (bug) (fixed)
tag_heat_map defect
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 0.7.4 | Priority: | normal |
| Severity: | major | Version: | 0.7.3 |
| Component: | Back-end | Keywords: | |
| Cc: |
Description
if the function tag_heat_map is called in the tag-single.php before the main content specifically
<?php tag_name(); ?>
if creates unexpected results.
this is because the variable $tag in the function is global.
Change History (9)
#6
@
19 years ago
just changing the global declaration will not fix the problem. this creates the links without the tags. change like 1235 to
$taglinks{$tag->raw_tag} = get_tag_link($tag->tag);
Note: See
TracTickets for help on using
tickets.
(In [550]) remove global on tag_heat_map(). props so1o, Aditya. Fixes #484