function theme_my_account_link in Ajax Login/Register 6.2
1 theme call to theme_my_account_link()
File
- ./
ajax_register.module, line 172
Code
function theme_my_account_link($attributes) {
global $user;
$user_uri = l(t('My Account'), 'user/' . $user->uid, array(
'attributes' => $attributes,
));
return $user_uri;
}