From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- .../wp-includes/IXR/class-IXR-request.php | 54 ---------------------- 1 file changed, 54 deletions(-) delete mode 100644 srcs/wordpress/wp-includes/IXR/class-IXR-request.php (limited to 'srcs/wordpress/wp-includes/IXR/class-IXR-request.php') diff --git a/srcs/wordpress/wp-includes/IXR/class-IXR-request.php b/srcs/wordpress/wp-includes/IXR/class-IXR-request.php deleted file mode 100644 index b00687b..0000000 --- a/srcs/wordpress/wp-includes/IXR/class-IXR-request.php +++ /dev/null @@ -1,54 +0,0 @@ -method = $method; - $this->args = $args; - $this->xml = << - -{$this->method} - - -EOD; - foreach ($this->args as $arg) { - $this->xml .= ''; - $v = new IXR_Value($arg); - $this->xml .= $v->getXml(); - $this->xml .= "\n"; - } - $this->xml .= ''; - } - - /** - * PHP4 constructor. - */ - public function IXR_Request( $method, $args ) { - self::__construct( $method, $args ); - } - - function getLength() - { - return strlen($this->xml); - } - - function getXml() - { - return $this->xml; - } -} -- cgit