- Timestamp:
- 05/19/2014 06:31:00 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r28487 r28521 54 54 public function __get( $name ) { 55 55 return $this->$name; 56 } 57 58 /** 59 * Make private properties setable for backwards compatibility 60 * 61 * @since 4.0.0 62 * @param string $name 63 * @param string $value 64 * @return mixed 65 */ 66 public function __set( $name, $value ) { 67 return $this->$name = $value; 56 68 } 57 69
Note: See TracChangeset
for help on using the changeset viewer.