I've made a little modification that shows the name and avatar of the user that posted a quote. This is only shown in the random quote at forumhome. Maybe someone else also likes this so I thought to share it with you people

Here goes:
Open the phrasemanager and add a new global phrase "added_by".
Open the plugin "Random Quote" and find:
Code:
eval('$showrandomquote = "' . fetch_template('quote_randomquote') . '";');
(this is at the bottom of the code)
Above it, insert:
Code:
require_once('./includes/functions_user.php');
$userinfo[avatarurl] = fetch_avatar_url($randomquote[userid]);
if (!$userinfo[avatarurl]) {
$userinfo[avatarurl] = "";
} else {
$userinfo[avatarurl] = $vbulletin->options['bburl'] . '/' . $userinfo[avatarurl][0];
}
Save the plugin and open the templates editor and the template: "quote_randomquote".
Find
Code:
<tr><td class="alt1" width="30%"></td>
and replace by:
Code:
<tr><td class="alt1" width="20%">$vbphrase[added_by]:<br>
<if condition="$userinfo[avatarurl]">
<a href="member.php?u=$randomquote[userid]"><img src="$userinfo[avatarurl]" border="0" alt="$randomquote[username]" height="50" width="50"/>
</if></a>
<a href="$vboptions[bburl]/member.php?userid=$randomquote[userid]">$randomquote[username]</a></td>
And you're done

Check
http://forum.seti.nl/ for a demo.
Enjoy
Thanks go to amykhar, cause I used part of her code from her
avatar on WOL hack