Changeset 7333 for branches/1.8/bp-groups/bp-groups-classes.php
- Timestamp:
- 08/01/2013 12:06:38 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.8/bp-groups/bp-groups-classes.php
r7323 r7333 2581 2581 $rmethod = $this->class_reflection->getMethod( $method ); 2582 2582 if ( isset( $rmethod->class ) && $this->class_name === $rmethod->class ) { 2583 $callback = array( $this ->class_name, $method );2583 $callback = array( $this, $method ); 2584 2584 } 2585 2585 … … 2588 2588 $rfallback_method = $this->class_reflection->getMethod( $fallback_method ); 2589 2589 if ( isset( $rfallback_method->class ) && $this->class_name === $rfallback_method->class ) { 2590 $callback = array( $this ->class_name, $fallback_method );2590 $callback = array( $this, $fallback_method ); 2591 2591 } 2592 2592 }
Note: See TracChangeset
for help on using the changeset viewer.