X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/f9001779751f83dc8a10e478bfecb4d8dd5f964c..refs/tags/wordpress-3.4:/wp-includes/class-wp-error.php?ds=sidebyside diff --git a/wp-includes/class-wp-error.php b/wp-includes/class-wp-error.php index 16241958..a3331da9 100644 --- a/wp-includes/class-wp-error.php +++ b/wp-includes/class-wp-error.php @@ -38,7 +38,7 @@ class WP_Error { var $error_data = array(); /** - * PHP4 Constructor - Sets up error message. + * Constructor - Sets up error message. * * If code parameter is empty then nothing will be done. It is possible to * add multiple messages to the same code, but with other methods in the @@ -54,7 +54,7 @@ class WP_Error { * @param mixed $data Optional. Error data. * @return WP_Error */ - function WP_Error($code = '', $message = '', $data = '') { + function __construct($code = '', $message = '', $data = '') { if ( empty($code) ) return; @@ -70,7 +70,7 @@ class WP_Error { * @since 2.1.0 * @access public * - * @return array List of error codes, if avaiable. + * @return array List of error codes, if available. */ function get_error_codes() { if ( empty($this->errors) ) @@ -102,7 +102,7 @@ class WP_Error { * @since 2.1.0 * * @param string|int $code Optional. Retrieve messages matching code, if exists. - * @return array Error strings on success, or empty array on failure (if using codee parameter). + * @return array Error strings on success, or empty array on failure (if using code parameter). */ function get_error_messages($code = '') { // Return all messages if no code specified. @@ -208,5 +208,3 @@ function is_wp_error($thing) { return true; return false; } - -?> \ No newline at end of file