Skip to:
Content

bbPress.org

Changeset 4404


Ignore:
Timestamp:
11/12/2012 07:16:51 PM (12 years ago)
Author:
johnjamesjacoby
Message:

Move bbp_load_textdomain() onto 'bbp_init' - was loading too early on 'bbp_loaded' -> 'plugins_loaded'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/core/actions.php

    r4395 r4404  
    6868add_action( 'bbp_loaded', 'bbp_setup_user_option_filters', 12 );
    6969add_action( 'bbp_loaded', 'bbp_register_theme_packages',   14 );
    70 add_action( 'bbp_loaded', 'bbp_load_textdomain',           16 );
    71 add_action( 'bbp_loaded', 'bbp_filter_user_roles_option',  18 );
     70add_action( 'bbp_loaded', 'bbp_filter_user_roles_option',  16 );
    7271
    7372/**
     
    7978 */
    8079add_action( 'bbp_init', 'bbp_register',         0   );
     80add_action( 'bbp_init', 'bbp_load_textdomain',  10  );
    8181add_action( 'bbp_init', 'bbp_add_rewrite_tags', 20  );
    8282add_action( 'bbp_init', 'bbp_ready',            999 );
Note: See TracChangeset for help on using the changeset viewer.