diff --git a/includes/theme.inc b/includes/theme.inc
index bb129772320ca9bf0c4c745c4b594edf89ce4085..c134df5bb3faf266dab9d0b6803f0dfc6fb4433d 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -1913,9 +1913,8 @@ function template_preprocess_username(&$variables) {
   if (drupal_strlen($variables['object']->name) > 20) {
     $variables['object']->name = drupal_substr($variables['object']->name, 0, 15) . '...';
   }
-  // Make sure these are safe for use in the theme function.
+  // Make sure name is safe for use in the theme function.
   $variables['object']->name = check_plain($variables['object']->name);
-  $variables['object']->extra = check_plain($variables['object']->extra);
 }
 
 /**