diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-06-13 09:19:17 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-06-13 09:19:17 +0000 |
commit | 53a53ce6db3cd1afb0b66bccbdf0bd6cd251db8c (patch) | |
tree | e927354f5fbbf2ae72bb96b9b56ef7904ac56896 /modules/user | |
parent | d880f8f55927a6da7ca3fce60253c8416fd19b5d (diff) | |
download | brdo-53a53ce6db3cd1afb0b66bccbdf0bd6cd251db8c.tar.gz brdo-53a53ce6db3cd1afb0b66bccbdf0bd6cd251db8c.tar.bz2 |
- fixing an error when no DA modules were loaded.
- indentation issue in node module.
Diffstat (limited to 'modules/user')
-rw-r--r-- | modules/user/user.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 7a075c755..245a00a54 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -469,6 +469,7 @@ function user_set_authmaps($account, $authmaps) { } function user_auth_help_links() { + $links = array(); foreach (module_list() as $module) { if (module_hook($module, "auth_help")) { $links[] = lm(module_invoke($module, "info", "name"), array("mod" => "user", "op" => "help"), $module); |