diff -u b/core/modules/xmlrpc/xmlrpc.module b/core/modules/xmlrpc/xmlrpc.module --- b/core/modules/xmlrpc/xmlrpc.module +++ b/core/modules/xmlrpc/xmlrpc.module @@ -15,7 +15,7 @@ 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. An XML-RPC client can communicate with the site by calling xmlrpc.php. For more information, see the online documentation for the XML-RPC module.', array('!xrphp' => $base_url . '/xmlrpc.php','!xrdocs' => 'https://drupal.org/documentation/modules/xmlrpc')) . '
'; + $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; } }