diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-10-06 11:00:01 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-10-06 11:00:01 +0000 |
commit | e85f1b32a7eeda454f6c475b61416f3f37bc5523 (patch) | |
tree | 9a5ec73d657d197ab4397f1d4c9a5b715d05cb98 /includes | |
parent | 9b23008a4adc890f4da64971232eca30c43c6271 (diff) | |
download | brdo-e85f1b32a7eeda454f6c475b61416f3f37bc5523.tar.gz brdo-e85f1b32a7eeda454f6c475b61416f3f37bc5523.tar.bz2 |
- Patch #273743 by meba, jsaints: fixed exmaple code.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/mail.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/mail.inc b/includes/mail.inc index e4b1cb505..c04414d46 100644 --- a/includes/mail.inc +++ b/includes/mail.inc @@ -35,7 +35,7 @@ * foreach ($accounts as $account) { * $params['account'] = $account; * // example_mail() will be called based on the first drupal_mail() parameter. - * drupal_mail('example', 'notify', $account->mail, user_preferred_language($account), $params); + * drupal_mail('example', 'notice', $account->mail, user_preferred_language($account), $params); * } * } * |