Index: quote.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/quote/quote.module,v retrieving revision 1.29.2.10.2.9 diff -u -p -r1.29.2.10.2.9 quote.module --- quote.module 24 Feb 2009 15:00:50 -0000 1.29.2.10.2.9 +++ quote.module 8 Oct 2009 21:09:31 -0000 @@ -94,7 +94,7 @@ function quote_form_alter(&$form, &$form $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, array('plain' => TRUE)); } else { $author = (!empty($comment->name)) ? $comment->name : variable_get('anonymous', 'Anonymous');