Bug when using multi term on taxonomy view
DaMaster - October 23, 2008 - 10:10
| Project: | Taxonomy Introduction |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | needs review |
Description
hello
when using a page like
taxonomy/term/63&54
there is on error ... (sql bla bla)
I want, in this case, have introduction text for terms 63 AND 54
I made the modification
For my project it's works perfectly ...
but I think some other test can be usefull !
I hope ther is useful for somebody
see file in attach
BRe
| Attachment | Size |
|---|---|
| taxonomy_intro.zip | 1.44 KB |

#1
to prevent warning juste change on taxonomy_intro.module
if ($tid == '') return NULL;
by
if (!is_numeric($tid )) return NULL;
#2
a lite mistake in my archive
replacing
$tab_or=explode("&",$tid);
by
$tab_or=explode("+",$tid);
#3
That fixed the error on mine (6.x-dev version) ... but now the "introduction" form isn't even showing on ...admin/content/taxonomy/edit/term/...