You are here

function persistent_login_form_after_build_proxy in Persistent Login 6

Same name and namespace in other branches
  1. 7 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
Implementation of hook_form_alter().

File

./persistent_login.module, line 182
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);
}