Changeset 28521 for trunk/src/wp-includes/class-wp-error.php
- Timestamp:
- 05/19/2014 06:31:00 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-error.php
r28511 r28521 74 74 public function __get( $name ) { 75 75 return $this->$name; 76 } 77 78 /** 79 * Make private properties setable for backwards compatibility 80 * 81 * @since 4.0.0 82 * @param string $name 83 * @param string $value 84 * @return mixed 85 */ 86 public function __set( $name, $value ) { 87 return $this->$name = $value; 76 88 } 77 89
Note: See TracChangeset
for help on using the changeset viewer.