summaryrefslogtreecommitdiff
path: root/modules/openid/openid.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-27 18:34:03 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-27 18:34:03 +0000
commit0f4060f377a6ccea57a183b3c3e4801c450f5476 (patch)
tree07a7bd87373613f3e884c8f56bfb9911eda38511 /modules/openid/openid.module
parent5bdcc4ada232bf92e3d529962d9f7aa2536605cc (diff)
downloadbrdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.gz
brdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.bz2
- Patch #472642 by stella, agentrickard: remove 'implementation of' nominalizations from Docblocks.
Diffstat (limited to 'modules/openid/openid.module')
-rw-r--r--modules/openid/openid.module12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/openid/openid.module b/modules/openid/openid.module
index 3e6090493..03053333f 100644
--- a/modules/openid/openid.module
+++ b/modules/openid/openid.module
@@ -7,7 +7,7 @@
*/
/**
- * Implementation of hook_menu().
+ * Implement hook_menu().
*/
function openid_menu() {
$items['openid/authenticate'] = array(
@@ -36,7 +36,7 @@ function openid_menu() {
}
/**
- * Implementation of hook_help().
+ * Implement hook_help().
*/
function openid_help($path, $arg) {
switch ($path) {
@@ -57,7 +57,7 @@ function openid_help($path, $arg) {
}
/**
- * Implementation of hook_user_insert().
+ * Implement hook_user_insert().
*/
function openid_user_insert(&$edit, &$account, $category = NULL) {
if (isset($_SESSION['openid']['values'])) {
@@ -70,14 +70,14 @@ function openid_user_insert(&$edit, &$account, $category = NULL) {
}
/**
- * Implementation of hook_form_FORM_ID_alter().
+ * Implement hook_form_FORM_ID_alter().
*/
function openid_form_user_login_block_alter(&$form, &$form_state) {
_openid_user_login_form_alter($form, $form_state);
}
/**
- * Implementation of hook_form_FORM_ID_alter().
+ * Implement hook_form_FORM_ID_alter().
*/
function openid_form_user_login_alter(&$form, &$form_state) {
_openid_user_login_form_alter($form, $form_state);
@@ -122,7 +122,7 @@ function _openid_user_login_form_alter(&$form, &$form_state) {
}
/**
- * Implementation of hook_form_alter(). Adds OpenID login to the login forms.
+ * Implement hook_form_alter(). Adds OpenID login to the login forms.
*/
function openid_form_user_register_alter(&$form, &$form_state) {
if (isset($_SESSION['openid']['values'])) {