function theme_user_register_link in Ajax Login/Register 6.2
1 theme call to theme_user_register_link()
File
- ./
ajax_register.module, line 161
Code
function theme_user_register_link($attributes, $query) {
$attributes['class'] = $attributes['class'] . ' thickbox';
$register_uri = user_register_access() ? l(t('Register'), 'ajax_register/register', array(
'attributes' => $attributes,
'query' => $query,
)) : '';
return $register_uri;
}