From dfd9c6059f72bb1639a97b2f28bf6f04072fcafa Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon <yahgrp@poplarware.com> Date: Fri, 20 Dec 2013 08:51:32 -0800 Subject: [PATCH] Issue #2103045 by batigolix, petrpo: Update hook_help for xmlrpc module --- core/modules/xmlrpc/xmlrpc.module | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/core/modules/xmlrpc/xmlrpc.module b/core/modules/xmlrpc/xmlrpc.module index c0e3d448f241..187da853446e 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 .= '<p>' . 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 <a href="@xmlrpc">xmlrpc.php</a> allows this communication to take place. For more information, see the online handbook entry for <a href="@xmlrpcapi">XML-RPC API</a>.', array( - '@xmlrpc' => url('xmlrpc.php', array('absolute' => TRUE)), - '@xmlrpcapi' => 'http://drupal.org/node/44895', - )) . '</p>'; + $output .= '<h3>' . t('About') . '</h3>'; + $output .= '<p>' . t('The XML-RPC module gives external systems the opportunity to communicate with the site through the <a href="http://en.wikipedia.org/wiki/XML-RPC">XML-RPC protocol</a>. An XML-RPC client can communicate with the site by making a request to <a href="!xrphp">xmlrpc.php</a>. For more information, see <a href="!xrdocs">the online documentation for the XML-RPC module</a>.', array('!xrphp' => \Drupal::url('xmlrpc.php'),'!xrdocs' => 'https://drupal.org/documentation/modules/xmlrpc')) . '</p>'; return $output; } } -- GitLab