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 --- .../wordpress/wp-includes/pluggable-deprecated.php | 208 --------------------- 1 file changed, 208 deletions(-) delete mode 100644 srcs/wordpress/wp-includes/pluggable-deprecated.php (limited to 'srcs/wordpress/wp-includes/pluggable-deprecated.php') diff --git a/srcs/wordpress/wp-includes/pluggable-deprecated.php b/srcs/wordpress/wp-includes/pluggable-deprecated.php deleted file mode 100644 index 03eeae4..0000000 --- a/srcs/wordpress/wp-includes/pluggable-deprecated.php +++ /dev/null @@ -1,208 +0,0 @@ -ID, $remember); -} -else : - _deprecated_function( 'wp_setcookie', '2.5.0', 'wp_set_auth_cookie()' ); -endif; - -if ( !function_exists('wp_clearcookie') ) : -/** - * Clears the authentication cookie, logging the user out. This function is deprecated. - * - * @since 1.5.0 - * @deprecated 2.5.0 Use wp_clear_auth_cookie() - * @see wp_clear_auth_cookie() - */ -function wp_clearcookie() { - _deprecated_function( __FUNCTION__, '2.5.0', 'wp_clear_auth_cookie()' ); - wp_clear_auth_cookie(); -} -else : - _deprecated_function( 'wp_clearcookie', '2.5.0', 'wp_clear_auth_cookie()' ); -endif; - -if ( !function_exists('wp_get_cookie_login') ): -/** - * Gets the user cookie login. This function is deprecated. - * - * This function is deprecated and should no longer be extended as it won't be - * used anywhere in WordPress. Also, plugins shouldn't use it either. - * - * @since 2.0.3 - * @deprecated 2.5.0 - * - * @return bool Always returns false - */ -function wp_get_cookie_login() { - _deprecated_function( __FUNCTION__, '2.5.0' ); - return false; -} -else : - _deprecated_function( 'wp_get_cookie_login', '2.5.0' ); -endif; - -if ( !function_exists('wp_login') ) : -/** - * Checks a users login information and logs them in if it checks out. This function is deprecated. - * - * Use the global $error to get the reason why the login failed. If the username - * is blank, no error will be set, so assume blank username on that case. - * - * Plugins extending this function should also provide the global $error and set - * what the error is, so that those checking the global for why there was a - * failure can utilize it later. - * - * @since 1.2.2 - * @deprecated 2.5.0 Use wp_signon() - * @see wp_signon() - * - * @global string $error Error when false is returned - * - * @param string $username User's username - * @param string $password User's password - * @param string $deprecated Not used - * @return bool False on login failure, true on successful check - */ -function wp_login($username, $password, $deprecated = '') { - _deprecated_function( __FUNCTION__, '2.5.0', 'wp_signon()' ); - global $error; - - $user = wp_authenticate($username, $password); - - if ( ! is_wp_error($user) ) - return true; - - $error = $user->get_error_message(); - return false; -} -else : - _deprecated_function( 'wp_login', '2.5.0', 'wp_signon()' ); -endif; - -/** - * WordPress AtomPub API implementation. - * - * Originally stored in wp-app.php, and later wp-includes/class-wp-atom-server.php. - * It is kept here in case a plugin directly referred to the class. - * - * @since 2.2.0 - * @deprecated 3.5.0 - * - * @link https://wordpress.org/plugins/atom-publishing-protocol/ - */ -if ( ! class_exists( 'wp_atom_server', false ) ) { - class wp_atom_server { - public function __call( $name, $arguments ) { - _deprecated_function( __CLASS__ . '::' . $name, '3.5.0', 'the Atom Publishing Protocol plugin' ); - } - - public static function __callStatic( $name, $arguments ) { - _deprecated_function( __CLASS__ . '::' . $name, '3.5.0', 'the Atom Publishing Protocol plugin' ); - } - } -} -- cgit