summaryrefslogtreecommitdiff
path: root/includes/mail.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-24 00:02:05 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-08-24 00:02:05 +0000
commit4ae238ea577ed0140df6fd034b06bfd7b0f0cdb4 (patch)
tree91a4f64953675ba9204158ebca02276aec7555ba /includes/mail.inc
parentc98fd96c62e6a60f5e5e2476ebc38766e438c535 (diff)
downloadbrdo-4ae238ea577ed0140df6fd034b06bfd7b0f0cdb4.tar.gz
brdo-4ae238ea577ed0140df6fd034b06bfd7b0f0cdb4.tar.bz2
*** empty log message ***
Diffstat (limited to 'includes/mail.inc')
-rw-r--r--includes/mail.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/mail.inc b/includes/mail.inc
index 58607c1e8..e2dbd15f6 100644
--- a/includes/mail.inc
+++ b/includes/mail.inc
@@ -115,7 +115,7 @@ function drupal_mail($module, $key, $to, $language, $params = array(), $from = N
// Build the e-mail (get subject and body, allow additional headers) by
// invoking hook_mail() on this module. We cannot use module_invoke() as
// we need to have $message by reference in hook_mail().
- if (drupal_function_exists($function = $module . '_mail')) {
+ if (function_exists($function = $module . '_mail')) {
$function($key, $message, $params);
}