Changeset 998
- Timestamp:
- 11/20/2014 04:44:15 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/classes/payment-request.php
r995 r998 10 10 // Initialization 11 11 add_action( 'init', array( $this, 'register_post_type' )); 12 add_action( 'init', array( $this, 'register_post_statuses' ) );12 add_action( 'init', array( __CLASS__, 'register_post_statuses' ) ); 13 13 add_action( 'add_meta_boxes', array( $this, 'init_meta_boxes' ) ); 14 14 … … 69 69 * Register our custom post statuses 70 70 */ 71 public function register_post_statuses() {71 public static function register_post_statuses() { 72 72 register_post_status( 73 73 'paid',
Note: See TracChangeset
for help on using the changeset viewer.