Changeset 9311
- Timestamp:
- 01/07/2015 11:44:19 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-loader.php
r9310 r9311 502 502 // Add the actions 503 503 foreach( $actions as $class_action ) { 504 add_action( 'bp_' . $class_action, array( $this, $class_action ), 5 ); 504 if ( method_exists( $this, $class_action ) ) { 505 add_action( 'bp_' . $class_action, array( $this, $class_action ), 5 ); 506 } 505 507 } 506 508
Note: See TracChangeset
for help on using the changeset viewer.