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 --- srcs/wordpress/wp-includes/SimplePie/Author.php | 157 ------------------------ 1 file changed, 157 deletions(-) delete mode 100644 srcs/wordpress/wp-includes/SimplePie/Author.php (limited to 'srcs/wordpress/wp-includes/SimplePie/Author.php') diff --git a/srcs/wordpress/wp-includes/SimplePie/Author.php b/srcs/wordpress/wp-includes/SimplePie/Author.php deleted file mode 100644 index bbf3812..0000000 --- a/srcs/wordpress/wp-includes/SimplePie/Author.php +++ /dev/null @@ -1,157 +0,0 @@ -name = $name; - $this->link = $link; - $this->email = $email; - } - - /** - * String-ified version - * - * @return string - */ - public function __toString() - { - // There is no $this->data here - return md5(serialize($this)); - } - - /** - * Author's name - * - * @return string|null - */ - public function get_name() - { - if ($this->name !== null) - { - return $this->name; - } - else - { - return null; - } - } - - /** - * Author's link - * - * @return string|null - */ - public function get_link() - { - if ($this->link !== null) - { - return $this->link; - } - else - { - return null; - } - } - - /** - * Author's email address - * - * @return string|null - */ - public function get_email() - { - if ($this->email !== null) - { - return $this->email; - } - else - { - return null; - } - } -} - -- cgit