| Versionen | |
|---|---|
| drupal6 – drupal7 | user_admin_account_validate($form, &$form_state) |
modules/
<?php
function user_admin_account_validate($form, &$form_state) {
$form_state['values']['accounts'] = array_filter($form_state['values']['accounts']);
if (count($form_state['values']['accounts']) == 0) {
form_set_error('', t('No users selected.'));
}
}
?>
Kommentare
Kommentar hinzufügen