function theme_user_signature in Drupal 6
Same name and namespace in other branches
- 7 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;
}