Index: quote.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/quote/quote.module,v retrieving revision 1.29.2.10.2.5 diff -u -r1.29.2.10.2.5 quote.module --- quote.module 7 Oct 2008 06:31:17 -0000 1.29.2.10.2.5 +++ quote.module 3 Feb 2009 23:58:45 -0000 @@ -80,7 +80,7 @@ $comment = db_fetch_object(db_query('SELECT c.*, u.uid, u.name AS registered_name FROM {comments} c INNER JOIN {users} u ON c.uid = u.uid WHERE c.cid = %d AND c.status = 0', $cid)); if ($comment->uid) { - $author = $comment->registered_name; + $author = theme('username', $comment); } else { $author = (!empty($comment->name)) ? $comment->name : variable_get('anonymous', 'Anonymous');