From a52cf8297aa8c012065a4cb4e3f6a6ee3e258fc1 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 4 Aug 2004 20:36:24 +0000 Subject: - Patch #7458 by killes: conditionally include xmlrpc.inc. --- modules/drupal/drupal.module | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'modules/drupal/drupal.module') diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module index 381192a86..10044a2ed 100644 --- a/modules/drupal/drupal.module +++ b/modules/drupal/drupal.module @@ -127,6 +127,8 @@ function drupal_xmlrpc() { * Sends a ping to the Drupal directory server. */ function drupal_notify($server) { + include_once 'includes/xmlrpc.inc'; + global $base_url; $url = parse_url($server); @@ -162,6 +164,7 @@ function drupal_info($field = 0) { * Implementation of hook_auth(). */ function drupal_auth($username, $password, $server) { + include_once 'includes/xmlrpc.inc'; $message = new xmlrpcmsg('drupal.login', array(new xmlrpcval($username, 'string'), new xmlrpcval($password, 'string'))); @@ -201,6 +204,8 @@ function drupal_page_help() { * Remote clients are usually other Drupal instances. */ function drupal_login($arguments) { + include_once 'includes/xmlrpc.inc'; + $argument = $arguments->getparam(0); $username = $argument->scalarval(); $argument = $arguments->getparam(1); -- cgit v1.2.3