diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2011-12-22 01:57:32 -0800 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2011-12-22 01:57:32 -0800 |
commit | 9ae311baa0149c1c2698c6cc7a182cf3c60e79f8 (patch) | |
tree | 1cb5e2e3e280e89403540afd8dd5030c162845e1 /modules/system/system.api.php | |
parent | e134bd5b1626c721018a15872af390759ba1b843 (diff) | |
download | brdo-9ae311baa0149c1c2698c6cc7a182cf3c60e79f8.tar.gz brdo-9ae311baa0149c1c2698c6cc7a182cf3c60e79f8.tar.bz2 |
Issue #1362920 by scor, oriol_e9g: Wrong sitename variable in system.api.php.
Diffstat (limited to 'modules/system/system.api.php')
-rw-r--r-- | modules/system/system.api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 10e50989f..33a93d1d8 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -1908,7 +1908,7 @@ function hook_image_toolkits() { */ function hook_mail_alter(&$message) { if ($message['id'] == 'modulename_messagekey') { - $message['body'][] = "--\nMail sent out from " . variable_get('sitename', t('Drupal')); + $message['body'][] = "--\nMail sent out from " . variable_get('site_name', t('Drupal')); } } |