Changeset 3617
- Timestamp:
- 11/17/2011 07:30:27 PM (14 years ago)
- File:
-
- 1 edited
-
branches/plugin/bbpress.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbpress.php
r3596 r3617 534 534 public function load_textdomain() { 535 535 536 // Allow locale to be filtered 537 $locale = apply_filters( 'bbpress_locale', get_locale() ); 536 // Default locale 537 $locale = get_locale(); 538 539 // Traditional WordPress plugin locale filter 540 $locale = apply_filters( 'plugin_locale', $locale, 'bbpress' ); 541 542 // bbPress specific locale filter 543 $locale = apply_filters( 'bbpress_locale', $locale ); 538 544 539 545 // Get mo file name
Note: See TracChangeset
for help on using the changeset viewer.