Making WordPress.org


Ignore:
Timestamp:
05/20/2014 09:30:03 PM (12 years ago)
Author:
iandunn
Message:

Multi-Event Sponsors: Line up indentation for callback registration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/multi-event-sponsors/classes/mes-sponsorship-level.php

    r626 r627  
    1515     */
    1616    public function __construct() {
    17         add_action( 'init',        array( $this, 'create_post_type' ) );
     17        add_action( 'init',                                   array( $this, 'create_post_type' ) );
    1818        add_action( 'add_meta_boxes_' . self::POST_TYPE_SLUG, array( $this, 'remove_meta_boxes' ) );
    19         add_action( 'admin_init',  array( $this, 'add_meta_boxes' ) );
    20         add_action( 'save_post',   array( $this, 'save_post' ), 10, 2 );
    21         add_filter( 'the_content', array( $this, 'add_header_footer_text' ) );
     19        add_action( 'admin_init',                             array( $this, 'add_meta_boxes' ) );
     20        add_action( 'save_post',                              array( $this, 'save_post' ), 10, 2 );
     21        add_filter( 'the_content',                            array( $this, 'add_header_footer_text' ) );
    2222    }
    2323
Note: See TracChangeset for help on using the changeset viewer.