Can display tags for node type - fix included
rcourtna - January 8, 2008 - 17:53
| Project: | Community Tags |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
line 601 of community_tags.module casts $arg1 to int.
case 'type':
$arg1 = (int)$arg1;
$arg2 = NULL;However, in this case we should expect a string, not an int. As a result, community tags for a node type can't be displayed. Deleting "$arg1=(int)$arg1;" fixes it.

#1
Makes perfect sense. Committed.
#2
Automatically closed -- issue fixed for two weeks with no activity.