Nice

, small suggestion though. I'd change:
Code: Select all
function make_gravatar($email)
{
return "http://www.gravatar.com/avatar/" . md5(strtolower(trim($email)));
}
into:
Code: Select all
function make_gravatar($email)
{
global $config;
return "http://www.gravatar.com/avatar/" . md5(strtolower(trim($email))) . (($config['avatar_max_width'] > 1 && $config['avatar_max_width'] < 512) ? "&size=" . $config['avatar_max_width'] : '');
}
This will force the gravatar into the same size as the boards avatars, otherwise they'll be limited to a with of 80px.
As well the dutch translation:
Code: Select all
$lang = array_merge($lang, array(
'ALLOW_GRAVATAR' => 'Gravatar toestaan',
'ALLOW_GRAVATAR_EXPLAIN' => 'Avatars gehost bij Gravatar.com',
'USE_GRAVATAR' => 'Gebruik Gravatar',
'USE_GRAVATAR_EXPLAIN' => 'Gebruik de Gravatar die geassocieerd is met het e-mail adres van dit account.',
));
Code: Select all
<title lang="nl">Gravatar intergratie</title>
<description lang="nl">Voegt een optie toe aan het UCP en ACP om de Gravatar te gebuiken die geassocieerd is met het email adres van de gebruiker</description>
<author-notes lang="nl">Dit is een officiële phpBBmodders.net MOD</author-notes>
<changelog lang="nl">
<change>Eerste beta release</change>
</changelog>
<diy-instructions lang="nl">Leeg de buffer na installatie.</diy-instructions>