i don't know which version you use. it could be, that you use an older
version that did some caching of the results which is more than buggy.
please load the actual version from here:
http://textpattern-plugins.googlecode.com/svn/trunk/current/glx_gravatar.txt
if it still does not work i need more information about txphorum.
greetings
patrick
--
Patrick Kollitsch
Thailand, Samui, Ban Thai
"*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`.http://samui-samui.de
(¸.·``··*
i think its exactly that: what this plugin needs is an attribute where
you define the email address. if its empty $thiscomment['email'] will
be taken.
around line 9 there is something like this:
$url .= md5($thiscomment['email']);
please exchange it with this:
$url .= (!empty($atts['email'])) ? md5(parse($atts['email'])) :
md5($thiscomment['email']);
(no linebreak in this line and its untested)
this will allow you to put a tag into the template like this
<txp:glx_gravatar email="<some tag or some emailaddress/>"/> and
should be able to parse everything another tag produces.
greetings
patrick