Changeset 28524 for trunk/src/wp-admin/custom-background.php
- Timestamp:
- 05/19/2014 06:51:35 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/custom-background.php
r28521 r28524 82 82 } 83 83 84 /** 85 * Make private properties checkable for backwards compatibility 86 * 87 * @since 4.0.0 88 * @param string $name 89 * @return mixed 90 */ 91 public function __isset( $name ) { 92 return isset( $this->$name ); 93 } 94 95 /** 96 * Make private properties unsetable for backwards compatibility 97 * 98 * @since 4.0.0 99 * @param string $name 100 * @return mixed 101 */ 102 public function __unset( $name ) { 103 unset( $this->$name ); 104 } 84 105 85 106 /**
Note: See TracChangeset
for help on using the changeset viewer.