aboutsummaryrefslogtreecommitdiff
path: root/srcs/wordpress/wp-includes/IXR/class-IXR-base64.php
diff options
context:
space:
mode:
Diffstat (limited to 'srcs/wordpress/wp-includes/IXR/class-IXR-base64.php')
-rw-r--r--srcs/wordpress/wp-includes/IXR/class-IXR-base64.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/srcs/wordpress/wp-includes/IXR/class-IXR-base64.php b/srcs/wordpress/wp-includes/IXR/class-IXR-base64.php
deleted file mode 100644
index 910f81b..0000000
--- a/srcs/wordpress/wp-includes/IXR/class-IXR-base64.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-/**
- * IXR_Base64
- *
- * @package IXR
- * @since 1.5.0
- */
-class IXR_Base64
-{
- var $data;
-
- /**
- * PHP5 constructor.
- */
- function __construct( $data )
- {
- $this->data = $data;
- }
-
- /**
- * PHP4 constructor.
- */
- public function IXR_Base64( $data ) {
- self::__construct( $data );
- }
-
- function getXml()
- {
- return '<base64>'.base64_encode($this->data).'</base64>';
- }
-}