Changeset 707689
- Timestamp:
- 05/03/2013 11:35:02 PM (13 years ago)
- File:
-
- 1 edited
-
buddypress-xml-rpc-receiver/trunk/bp-xmlrpc.php (modified) (14 diffs)
Legend:
- Unmodified
- Added
- Removed
-
buddypress-xml-rpc-receiver/trunk/bp-xmlrpc.php
r707687 r707689 236 236 237 237 if(isset($data['active_components'])) 238 $output['active_components'] = $this-> active_components;238 $output['active_components'] = $this->get_active_components(); 239 239 240 240 return $output; … … 331 331 332 332 if(isset($data['active_components'])) 333 $output['active_components'] = $this-> active_components;333 $output['active_components'] = $this->get_active_components(); 334 334 335 335 return $output; … … 389 389 } 390 390 if(isset($data['active_components'])) 391 $output['active_components'] = $this-> active_components;391 $output['active_components'] = $this->get_active_components(); 392 392 393 393 return $output; … … 434 434 435 435 if(isset($data['active_components'])) 436 $output['active_components'] = $this-> active_components;436 $output['active_components'] = $this->get_active_components(); 437 437 438 438 return $output; … … 490 490 491 491 if(isset($data['active_components'])) 492 $output['active_components'] = $this-> active_components;492 $output['active_components'] = $this->get_active_components(); 493 493 494 494 return $output; … … 538 538 539 539 if(isset($data['active_components'])) 540 $output['active_components'] = $this-> active_components;540 $output['active_components'] = $this->get_active_components(); 541 541 542 542 return $output; … … 615 615 616 616 if(isset($data['active_components'])) 617 $output['active_components'] = $this-> active_components;617 $output['active_components'] = $this->get_active_components(); 618 618 619 619 return $output; … … 667 667 668 668 if(isset($data['active_components'])) 669 $output['active_components'] = $this-> active_components;669 $output['active_components'] = $this->get_active_components(); 670 670 671 671 return $output; … … 731 731 } 732 732 if(isset($data['active_components'])) 733 $output['active_components'] = $this-> active_components;733 $output['active_components'] = $this->get_active_components(); 734 734 735 735 return $output; … … 807 807 } 808 808 if(isset($data['active_components'])) 809 $output['active_components'] = $this-> active_components;809 $output['active_components'] = $this->get_active_components(); 810 810 811 811 return $output; … … 1004 1004 1005 1005 if(isset($data['active_components'])) 1006 $output['active_components'] = $this-> active_components;1006 $output['active_components'] = $this->get_active_components(); 1007 1007 1008 1008 return $output; … … 1173 1173 1174 1174 if(isset($data['active_components'])) 1175 $output['active_components'] = $this-> active_components;1175 $output['active_components'] = $this->get_active_components(); 1176 1176 1177 1177 return $output; … … 1216 1216 $output['message'] = __( 'Member deleted!', 'bp-xmlrpc' ); 1217 1217 if(isset($data['active_components'])) 1218 $output['active_components'] = $this-> active_components;1218 $output['active_components'] = $this->get_active_components(); 1219 1219 1220 1220 return $output; … … 1296 1296 * @return array 1297 1297 */ 1298 function active_compontents() { 1299 global $bp; 1298 function get_active_compontents() { 1300 1299 $output = array(); 1301 1300
Note: See TracChangeset
for help on using the changeset viewer.