function theme_lt_password_title in LoginToboggan 6
Same name and namespace in other branches
- 5 logintoboggan.module \theme_lt_password_title()
- 7 logintoboggan.module \theme_lt_password_title()
Theme the password title of the user login form and the user login block.
1 theme call to theme_lt_password_title()
- logintoboggan_form_alter in ./
logintoboggan.module - Implementation of hook_form_alter()
File
- ./
logintoboggan.module, line 1364 - Logintoboggan Module
Code
function theme_lt_password_title($form_id) {
// Label text for the password field.
return t('Password');
}