Downloads
Download tar.gz
30.5 KB
MD5: a50454e2da5efb2c21387ee341373b1e
SHA-1: 21fb2c1742320aa9b65f2431c3746c813397ad67
SHA-256: 3668e76d6796c3c343b44e4dca4f66603535b73913fc4b41294adbc49206eee9
Download zip
40.76 KB
MD5: 7d9eae60c65dbaf56cfc064de5e1858d
SHA-1: 2e82660ea29311d6aa406b7fd76a83d6495f1ea9
SHA-256: f85400b990ea8374e7c317dc9f532b502ba77e65d0f8b9f5ca8cb2f2e7ce6bec
Release notes
* Fix a bug in mlm.install (jerdavis)
* Make it easier and less buggy to include the mlm subscription element in arbitrary forms, like so:
function foo_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == 'user_register') {
$form['mlm'] = array(
'#type' => 'mlm_subscription',
'#mlm_settings' => array(
'show_mail' => FALSE,
),
);
}
}