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

CommentFileSizeAuthor
#2 taxonomy_intro.zip1.44 KBDaMaster
taxonomy_intro.zip1.44 KBDaMaster

Comments

DaMaster’s picture

to prevent warning juste change on taxonomy_intro.module

if ($tid == '') return NULL;

by

if (!is_numeric($tid )) return NULL;

DaMaster’s picture

StatusFileSize
new1.44 KB

a lite mistake in my archive

replacing
$tab_or=explode("&",$tid);
by
$tab_or=explode("+",$tid);

OneTwoTait’s picture

Version: 5.x-1.1 » 6.x-1.x-dev

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/...

summit’s picture

Hi,
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

mo6’s picture

Although 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.