function asaf_get_security_token in Asaf (ajax submit for any form) 8
Same name and namespace in other branches
- 7 asaf.module \asaf_get_security_token()
2 calls to asaf_get_security_token()
File
- ./
asaf.module, line 577 - Main module file.
Code
function asaf_get_security_token($form_id, $form_build_id) {
return md5('asaf-' . $form_id . '-form-' . $form_build_id . '-security-token');
}