function persistent_login_form_after_build_proxy in Persistent Login 7
Same name and namespace in other branches
- 6 persistent_login.module \persistent_login_form_after_build_proxy()
Proxy function to call persistent_login_form_after_build(), because it might not be included yet when the form is processed and invokes the callback.
1 string reference to 'persistent_login_form_after_build_proxy'
- persistent_login_form_alter in ./
persistent_login.module - Implements hook_form_alter().
File
- ./
persistent_login.module, line 197 - Provide a "Remember Me" checkbox in the login form.
Code
function persistent_login_form_after_build_proxy($form, &$form_state) {
module_load_include('inc', 'persistent_login', 'persistent_login.pages');
return persistent_login_form_after_build($form, $form_state);
}