Same name and namespace in other branches
  1. 7.x modules/user/user.module \theme_user_signature()

Theme output of user signature.

Related topics

File

modules/user/user.module, line 2150
Enables the user registration and login system.

Code

function theme_user_signature($signature) {
  $output = '';
  if ($signature) {
    $output .= '<div class="clear">';
    $output .= '<div>—</div>';
    $output .= $signature;
    $output .= '</div>';
  }
  return $output;
}