Changeset 4629
- Timestamp:
- 12/22/2012 08:03:29 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/bbpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bbpress.php
r4624 r4629 145 145 146 146 /** 147 * Magic method for getting bbPress vari bles147 * Magic method for getting bbPress variables 148 148 * 149 149 * @since bbPress (r3951) … … 152 152 153 153 /** 154 * Magic method for setting bbPress vari bles154 * Magic method for setting bbPress variables 155 155 * 156 156 * @since bbPress (r3951) 157 157 */ 158 158 public function __set( $key, $value ) { $this->data[$key] = $value; } 159 160 /** 161 * Magic method for unsetting bbPress variables 162 * 163 * @since bbPress (r4628) 164 */ 165 public function __unset( $key ) { if ( isset( $this->data[$key] ) ) unset( $this->data[$key] ); } 159 166 160 167 /**
Note: See TracChangeset
for help on using the changeset viewer.