summaryrefslogtreecommitdiff
path: root/modules/drupal
diff options
context:
space:
mode:
Diffstat (limited to 'modules/drupal')
-rw-r--r--modules/drupal/drupal.module5
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module
index 04530831b..05bdcf9df 100644
--- a/modules/drupal/drupal.module
+++ b/modules/drupal/drupal.module
@@ -127,8 +127,6 @@ 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);
@@ -164,7 +162,6 @@ 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')));
@@ -204,8 +201,6 @@ 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);