function theme_user_signature

7.x user.module theme_user_signature($variables)
6.x user.module theme_user_signature($signature)

Theme output of user signature.

Related topics

File

drupal-6.x/modules/user/user.module, line 2121
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;
}