Ticket #29583: class-wp-error.php.patch
File class-wp-error.php.patch, 343 bytes (added by , 10 years ago) |
---|
-
.php
old new 75 75 * @return mixed Property. 76 76 */ 77 77 public function __get( $name ) { 78 return $this->$name; 78 $ret = null; 79 if ( isset( $this->$name ) ) { 80 $ret = $this->$name; 81 } 82 return $ret; 79 83 } 80 84 81 85 /**