diff -u b/core/modules/basic_auth/basic_auth.module b/core/modules/basic_auth/basic_auth.module --- b/core/modules/basic_auth/basic_auth.module +++ b/core/modules/basic_auth/basic_auth.module @@ -13,7 +13,7 @@ case 'admin/help#basic_auth': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The HTTP Basic Authentication module provides a a simple way to protect web pages and other resources with a username and password. This module does not have a user interface but it is used by other modules such as RESTful Web Services. For more information, see the online documentation for the HTTP Basic Authentication module.', array('!hba_do' => 'https://drupal.org/documentation/modules/basic_auth', '!rfws_help' => \Drupal::url('help.page', array('name' => 'rest')))) . '

'; + $output .= '

' . t('The HTTP Basic Authentication module provides clients a way to authenticate user accounts without using cookies. This is useful for web service consumers that can not deal with cookies. For more information, see the online documentation for the HTTP Basic Authentication module.', array('!hba_do' => 'https://drupal.org/documentation/modules/basic_auth')) . '

'; return $output; } }