diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-17 02:26:07 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-17 02:26:07 +0000 |
commit | c0a7d23069d6585f9bf1108657be058e453dd263 (patch) | |
tree | 443e69725087ef23638f53eadbb2c1af66ff8260 | |
parent | aae42b23b7ec42adbdabd84bf13e4e770f17ea8d (diff) | |
download | brdo-c0a7d23069d6585f9bf1108657be058e453dd263.tar.gz brdo-c0a7d23069d6585f9bf1108657be058e453dd263.tar.bz2 |
#404244 by cwgordon7: Fix indentation in OpenID module.
-rw-r--r-- | modules/openid/openid.module | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/openid/openid.module b/modules/openid/openid.module index f9f54faf2..65f1a5170 100644 --- a/modules/openid/openid.module +++ b/modules/openid/openid.module @@ -40,8 +40,7 @@ function openid_menu() { */ function openid_help($path, $arg) { switch ($path) { - - case 'user/%/openid': + case 'user/%/openid': $output = '<p>' . t('This site supports <a href="@openid-net">OpenID</a>, a secure way to log into many websites using a single username and password. OpenID can reduce the necessity of managing many usernames and passwords for many websites.', array('@openid-net' => url('http://openid.net'))) . '</p>'; $output .= '<p>' . t('To use OpenID you must first establish an identity on a public or private OpenID server. If you do not have an OpenID and would like one, look into one of the <a href="@openid-providers">free public providers</a>. You can find out more about OpenID at <a href="@openid-net">this website</a>.', array('@openid-providers' => url('http://openid.net/get/'), '@openid-net' => url('http://openid.net'))) . '</p>'; $output .= '<p>' . t('If you already have an OpenID, enter the URL to your OpenID server below (e.g. myusername.openidprovider.com). Next time you login, you will be able to use this URL instead of a regular username and password. You can have multiple OpenID servers if you like; just keep adding them here.') . '</p>'; |