summaryrefslogtreecommitdiff
path: root/modules/openid
diff options
context:
space:
mode:
Diffstat (limited to 'modules/openid')
-rw-r--r--modules/openid/openid.install4
-rw-r--r--modules/openid/openid.module12
-rw-r--r--modules/openid/tests/openid_test.install2
-rw-r--r--modules/openid/tests/openid_test.module2
4 files changed, 10 insertions, 10 deletions
diff --git a/modules/openid/openid.install b/modules/openid/openid.install
index 62955ad2b..f9d1671aa 100644
--- a/modules/openid/openid.install
+++ b/modules/openid/openid.install
@@ -7,7 +7,7 @@
*/
/**
- * Implement hook_schema().
+ * Implements hook_schema().
*/
function openid_schema() {
$schema['openid_association'] = array(
@@ -59,7 +59,7 @@ function openid_schema() {
}
/**
- * Implement hook_requirements().
+ * Implements hook_requirements().
*/
function openid_requirements($phase) {
$requirements = array();
diff --git a/modules/openid/openid.module b/modules/openid/openid.module
index f8141912c..acf9b996a 100644
--- a/modules/openid/openid.module
+++ b/modules/openid/openid.module
@@ -7,7 +7,7 @@
*/
/**
- * Implement hook_menu().
+ * Implements hook_menu().
*/
function openid_menu() {
$items['openid/authenticate'] = array(
@@ -39,7 +39,7 @@ function openid_menu() {
}
/**
- * Implement hook_help().
+ * Implements hook_help().
*/
function openid_help($path, $arg) {
switch ($path) {
@@ -62,7 +62,7 @@ function openid_help($path, $arg) {
}
/**
- * Implement hook_user_insert().
+ * Implements hook_user_insert().
*/
function openid_user_insert(&$edit, $account, $category) {
if (isset($_SESSION['openid']['values'])) {
@@ -76,14 +76,14 @@ function openid_user_insert(&$edit, $account, $category) {
}
/**
- * Implement hook_form_FORM_ID_alter().
+ * Implements hook_form_FORM_ID_alter().
*/
function openid_form_user_login_block_alter(&$form, &$form_state) {
_openid_user_login_form_alter($form, $form_state);
}
/**
- * Implement hook_form_FORM_ID_alter().
+ * Implements hook_form_FORM_ID_alter().
*/
function openid_form_user_login_alter(&$form, &$form_state) {
_openid_user_login_form_alter($form, $form_state);
@@ -128,7 +128,7 @@ function _openid_user_login_form_alter(&$form, &$form_state) {
}
/**
- * Implement hook_form_alter().
+ * Implements hook_form_alter().
*
* Adds OpenID login to the login forms.
*/
diff --git a/modules/openid/tests/openid_test.install b/modules/openid/tests/openid_test.install
index ac826fd47..f59c3c701 100644
--- a/modules/openid/tests/openid_test.install
+++ b/modules/openid/tests/openid_test.install
@@ -7,7 +7,7 @@
*/
/**
- * Implement hook_install().
+ * Implements hook_install().
*/
function openid_test_install() {
module_load_include('inc', 'openid');
diff --git a/modules/openid/tests/openid_test.module b/modules/openid/tests/openid_test.module
index 365ddf9b3..4bf839d58 100644
--- a/modules/openid/tests/openid_test.module
+++ b/modules/openid/tests/openid_test.module
@@ -22,7 +22,7 @@
*/
/**
- * Implement hook_menu().
+ * Implements hook_menu().
*/
function openid_test_menu() {
$items['openid-test/yadis/xrds'] = array(