diff --git a/core/modules/xmlrpc/xmlrpc.module b/core/modules/xmlrpc/xmlrpc.module index c0e3d44..187da85 100644 --- a/core/modules/xmlrpc/xmlrpc.module +++ b/core/modules/xmlrpc/xmlrpc.module @@ -12,10 +12,8 @@ function xmlrpc_help($path, $args) { switch ($path) { case 'admin/help#xmlrpc': $output = ''; - $output .= '

' . t('The XML-RPC module gives external systems the opportunity to communicate with the site through the XML-RPC protocol. Pointing an XML-RPC client at xmlrpc.php allows this communication to take place. For more information, see the online handbook entry for XML-RPC API.', array( - '@xmlrpc' => url('xmlrpc.php', array('absolute' => TRUE)), - '@xmlrpcapi' => 'http://drupal.org/node/44895', - )) . '

'; + $output .= '

' . t('About') . '

'; + $output .= '

' . t('The XML-RPC module gives external systems the opportunity to communicate with the site through the XML-RPC protocol. An XML-RPC client can communicate with the site by making a request to xmlrpc.php. For more information, see the online documentation for the XML-RPC module.', array('!xrphp' => \Drupal::url('xmlrpc.php'),'!xrdocs' => 'https://drupal.org/documentation/modules/xmlrpc')) . '

'; return $output; } }