Hi. Thanks for this great add-on. I was looking for a Welcome panel just like this.
Installed flawless.
Found two little bugs though:
In forumhome_loggedinuser there is a little error on line 51, some unbalanced quotes:
Code:
$loggedin['musername'] = ($vbulletin->options['avatarenabled'] ? '<img border="0" src="' . $loggedin['avatarurl'] . '" alt="width="20" height="20" /> ' . $loggedin['musername'] : $loggedin['musername']);
must be:
Code:
$loggedin['musername'] = ($vbulletin->options['avatarenabled'] ? '<img border="0" src="' . $loggedin['avatarurl'] . '" alt="" width="20" height="20" /> ' . $loggedin['musername'] : $loggedin['musername']);
And the copyright in the footer has three unescaped ampersands (&) that breaks the w3c validation.
That's it. The rest is perfect and a great asset to our forums.