Ticket #29583: 29583-class-wp-error.php-brianlayman.patch
File 29583-class-wp-error.php-brianlayman.patch, 425 bytes (added by , 9 years ago) |
---|
-
class-wp-error.php
75 75 * @return mixed Property. 76 76 */ 77 77 public function __get( $name ) { 78 return $this->$name;78 return ( isset( $this->$name ) ? $this->$name : null ); 79 79 } 80 80 81 81 /**