diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-07-24 16:25:19 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-07-24 16:25:19 +0000 |
commit | ccf1af94fa7cea3608916541e964680489b9a56c (patch) | |
tree | aea54f5993a56d34bdd63b8b9fd2039d215620ab /modules/openid/openid.module | |
parent | 34626ed280a8042c81c6f1327a7622486a701c44 (diff) | |
download | brdo-ccf1af94fa7cea3608916541e964680489b9a56c.tar.gz brdo-ccf1af94fa7cea3608916541e964680489b9a56c.tar.bz2 |
- Patch #245329 by christefano and dmitrig01: code comment love.
Diffstat (limited to 'modules/openid/openid.module')
-rw-r--r-- | modules/openid/openid.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/openid/openid.module b/modules/openid/openid.module index 577497b08..a62a3e0f4 100644 --- a/modules/openid/openid.module +++ b/modules/openid/openid.module @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_menu. + * Implementation of hook_menu(). */ function openid_menu() { $items['openid/authenticate'] = array( @@ -71,7 +71,7 @@ function openid_user($op, &$edit, &$account, $category = NULL) { } /** - * Implementation of hook_form_alter : adds OpenID login to the login forms. + * Implementation of hook_form_alter(). Adds OpenID login to the login forms. */ function openid_form_alter(&$form, $form_state, $form_id) { if ($form_id == 'user_login_block' || $form_id == 'user_login') { |