Changeset 28521 for trunk/src/wp-admin/custom-header.php
- Timestamp:
- 05/19/2014 06:31:00 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/custom-header.php
r28483 r28521 90 90 public function __get( $name ) { 91 91 return $this->$name; 92 } 93 94 /** 95 * Make private properties setable for backwards compatibility 96 * 97 * @since 4.0.0 98 * @param string $name 99 * @param string $value 100 * @return mixed 101 */ 102 public function __set( $name, $value ) { 103 return $this->$name = $value; 92 104 } 93 105
Note: See TracChangeset
for help on using the changeset viewer.