summaryrefslogtreecommitdiff
path: root/modules/user
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-08-20 05:57:41 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-08-20 05:57:41 +0000
commit55eec8f66f909fd105074142d99e22e02b489991 (patch)
tree246f2e41d47fd55b83dfcb690919e65e17e62e96 /modules/user
parente14c3aa6c0707c18005146f5311f0db0d5a1af3f (diff)
downloadbrdo-55eec8f66f909fd105074142d99e22e02b489991.tar.gz
brdo-55eec8f66f909fd105074142d99e22e02b489991.tar.bz2
#79601: module_exist() -> module_exists()
Diffstat (limited to 'modules/user')
-rw-r--r--modules/user/user.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index 5f74ca43c..eacf6eb45 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -743,7 +743,7 @@ function user_menu($may_cache) {
'callback' => 'drupal_get_form', 'callback arguments' => array('user_admin_access_delete_confirm'),
'access' => $access_access, 'type' => MENU_CALLBACK);
- if (module_exist('search')) {
+ if (module_exists('search')) {
$items[] = array('path' => 'admin/user/search', 'title' => t('search users'),
'description' => t('Search users by name.'),
'callback' => 'user_admin', 'callback arguments' => array('search'), 'access' => $admin_access,