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
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | taxonomy_intro.zip | 1.44 KB | DaMaster |
| taxonomy_intro.zip | 1.44 KB | DaMaster |
Comments
Comment #1
DaMaster commentedto prevent warning juste change on taxonomy_intro.module
if ($tid == '') return NULL;
by
if (!is_numeric($tid )) return NULL;
Comment #2
DaMaster commenteda lite mistake in my archive
replacing
$tab_or=explode("&",$tid);
by
$tab_or=explode("+",$tid);
Comment #3
OneTwoTait commentedThat fixed the error on mine (6.x-dev version) ... but now the "introduction" form isn't even showing on ...admin/content/taxonomy/edit/term/...
Comment #4
summit commentedHi,
Is taxonomy introduction D6 still alive? Only going to use the module if it is working as advertised?
Is there a 1.0 version in the making?
Thanks a lot for your reply in advance!
greetings, Martijn
Comment #5
mo6Although this module is a great idea, it looks abandoned (no D6 release yet) and the code is messy. I suggest running the coder module to clean it up.