Page 1 of 1

Avatars are not shown after upgrade to .18 and .20

Posted: Sat Jul 28, 2007 8:47 am
by Hokey
Hi out there!

Since yesterday no Gravatars or Favatars are shown on my blog. All former versions of the new avatar plugin seemed to work (although I don't know if anyone of my commenters uses Pavatar or MySpace).

But since version 1.18 my Gravatar and the Favatars are not working. You can see my avatar-settings in the screenshot below. I'm using S9Y-1.2-beta2 and PHP 4.4.7.

Image

Re: Avatars are not shown after upgrade to .18 and .20

Posted: Sat Jul 28, 2007 2:02 pm
by garvinhicking
Hi!

Indeed a bug. In this line:

Code: Select all

            $url = $serendipity['baseURL'] . $serendipity['indexFile'] 
                . $this->getPermaPluginPath() . '/fetchAvatar_' . $this->urlencode($eventData['url']) . '_' . md5($eventData['email']);
it should read

Code: Select all

            $url = $serendipity['baseURL'] . $serendipity['indexFile'] . '/?'
                . $this->getPermaPluginPath() . '/fetchAvatar_' . $this->urlencode($eventData['url']) . '_' . md5($eventData['email']);
instead (note the extra '/?').

HTH,
Garvin

Posted: Sat Jul 28, 2007 2:22 pm
by Hokey
This works! :)