Opened 20 years ago
Closed 20 years ago
#484 closed defect (bug) (fixed)
tag_heat_map defect
| Reported by: | so1o | Owned by: | mdawaffe |
|---|---|---|---|
| Priority: | normal | Milestone: | 0.7.4 |
| Component: | Back-end | Version: | 0.7.3 |
| Severity: | major | 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
@
20 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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
(In [550]) remove global on tag_heat_map(). props so1o, Aditya. Fixes #484