diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-20 05:57:41 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-20 05:57:41 +0000 |
commit | 55eec8f66f909fd105074142d99e22e02b489991 (patch) | |
tree | 246f2e41d47fd55b83dfcb690919e65e17e62e96 /modules/contact | |
parent | e14c3aa6c0707c18005146f5311f0db0d5a1af3f (diff) | |
download | brdo-55eec8f66f909fd105074142d99e22e02b489991.tar.gz brdo-55eec8f66f909fd105074142d99e22e02b489991.tar.bz2 |
#79601: module_exist() -> module_exists()
Diffstat (limited to 'modules/contact')
-rw-r--r-- | modules/contact/contact.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/contact/contact.module b/modules/contact/contact.module index 61d0aa743..a0176995a 100644 --- a/modules/contact/contact.module +++ b/modules/contact/contact.module @@ -27,7 +27,7 @@ function contact_help($section) { return t('Enables the use of both personal and site-wide contact forms.'); case 'admin/build/contact': $output = t('This page lets you setup <a href="@form">your site-wide contact form</a>. To do so, add one or more categories. You can associate different recipients with each category to route e-mails to different people. For example, you can route website feedback to the webmaster and direct product information requests to the sales department. On the <a href="@settings">settings page</a>, you can customize the information shown above the contact form. This can be useful to provide additional contact information such as your postal address and telephone number.', array('@settings' => url('admin/build/contact/settings'), '@form' => url('contact'))); - if (!module_exist('menu')) { + if (!module_exists('menu')) { $menu_note = t('The menu item can be customized and configured only once the menu module has been <a href="@modules-page">enabled</a>.', array('@modules-page' => url('admin/settings/modules'))); } else { |