I appear to be getting errors. Here is my code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<plugins>
<plugin active="1" product="vbulletin">
<title>Default Avatar</title>
<hookname>postbit_display_complete</hookname>
<phpcode><![CDATA[if (!$this->post['avatarurl'])
{
$this->post['avatarurl'] = "images/avatars/flame.gif";
}
if ($this->registry->userinfo['showavatars'])
{
$show['avatar'] = true;
}]]></phpcode>
</plugin>
<plugin active="1" product="vbulletin">
<title>Default Avatar member.php</title>
<hookname>member_complete</hookname>
<phpcode><![CDATA[if (!$avatarurl)
{
$userinfo['avatarurl'] = "images/avatars/flame.gif";
}
$show['avatar'] = true;]]></phpcode>
</plugin>
</plugins>
Any suggestions? Thanks.
|