Changeset 3964
- Timestamp:
- 06/14/2012 04:50:43 AM (12 years ago)
- Location:
- branches/plugin
- Files:
-
- 50 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-admin/bbp-actions.php
r3884 r3964 187 187 do_action( 'bbp_register_admin_settings' ); 188 188 } 189 190 ?> -
branches/plugin/bbp-admin/bbp-admin.php
r3946 r3964 937 937 bbpress()->admin->converter = new BBP_Converter(); 938 938 } 939 940 ?> -
branches/plugin/bbp-admin/bbp-converter.php
r3893 r3964 1271 1271 } 1272 1272 } 1273 1274 ?> -
branches/plugin/bbp-admin/bbp-forums.php
r3842 r3964 590 590 bbpress()->admin->forums = new BBP_Forums_Admin(); 591 591 } 592 593 ?> -
branches/plugin/bbp-admin/bbp-functions.php
r3963 r3964 211 211 return $tabs_html; 212 212 } 213 214 ?> -
branches/plugin/bbp-admin/bbp-metaboxes.php
r3814 r3964 487 487 do_action( 'bbp_author_metabox', $post_id ); 488 488 } 489 490 ?> -
branches/plugin/bbp-admin/bbp-replies.php
r3919 r3964 969 969 bbpress()->admin->replies = new BBP_Replies_Admin(); 970 970 } 971 972 ?> -
branches/plugin/bbp-admin/bbp-settings.php
r3884 r3964 1089 1089 } 1090 1090 } 1091 1092 ?> -
branches/plugin/bbp-admin/bbp-tools.php
r3911 r3964 935 935 } 936 936 } 937 938 ?> -
branches/plugin/bbp-admin/bbp-topics.php
r3919 r3964 1040 1040 bbpress()->admin->topics = new BBP_Topics_Admin(); 1041 1041 } 1042 1043 ?> -
branches/plugin/bbp-admin/bbp-users.php
r3758 r3964 111 111 bbpress()->admin->users = new BBP_Users_Admin(); 112 112 } 113 114 ?> -
branches/plugin/bbp-admin/converters/Example.php
r3866 r3964 331 331 } 332 332 } 333 ?> -
branches/plugin/bbp-admin/converters/Invision.php
r3866 r3964 362 362 } 363 363 } 364 ?> -
branches/plugin/bbp-admin/converters/bbPress1.php
r3893 r3964 527 527 } 528 528 } 529 530 ?> -
branches/plugin/bbp-admin/converters/index.php
r3816 r3964 4 4 * Do not modify the files in this folder. 5 5 */ 6 7 ?> -
branches/plugin/bbp-admin/converters/phpBB.php
r3867 r3964 537 537 538 538 } 539 540 ?> -
branches/plugin/bbp-admin/converters/vBulletin.php
r3866 r3964 339 339 } 340 340 } 341 ?> -
branches/plugin/bbp-admin/index.php
r3245 r3964 4 4 * Do not modify the files in this folder. 5 5 */ 6 7 ?> -
branches/plugin/bbp-includes/bbp-common-functions.php
r3911 r3964 1627 1627 $wp_query->set_404(); 1628 1628 } 1629 1630 ?> -
branches/plugin/bbp-includes/bbp-common-template.php
r3918 r3964 2167 2167 return apply_filters( 'bbp_title', $title, $sep, $seplocation ); 2168 2168 } 2169 2170 ?> -
branches/plugin/bbp-includes/bbp-core-actions.php
r3911 r3964 539 539 do_action( 'bbp_after_setup_theme' ); 540 540 } 541 542 ?> -
branches/plugin/bbp-includes/bbp-core-caps.php
r3946 r3964 719 719 return (bool) apply_filters( 'bbp_current_user_can_see', (bool) $retval, $component ); 720 720 } 721 722 ?> -
branches/plugin/bbp-includes/bbp-core-classes.php
r3829 r3964 379 379 380 380 endif; // class_exists check 381 382 ?> -
branches/plugin/bbp-includes/bbp-core-filters.php
r3961 r3964 294 294 } 295 295 add_filter( 'bbp_after_has_replies_parse_args', '_bbp_has_replies_query' ); 296 297 ?> -
branches/plugin/bbp-includes/bbp-core-functions.php
r3954 r3964 406 406 return bbpress()->view_id; 407 407 } 408 409 ?> -
branches/plugin/bbp-includes/bbp-core-options.php
r3949 r3964 463 463 return apply_filters( 'bbp_get_config_location', get_option( 'bb-config-location', $default ) ); 464 464 } 465 466 ?> -
branches/plugin/bbp-includes/bbp-core-shortcodes.php
r3953 r3964 800 800 bbpress()->shortcodes = new BBP_Shortcodes(); 801 801 } 802 803 ?> -
branches/plugin/bbp-includes/bbp-core-update.php
r3840 r3964 210 210 ); 211 211 } 212 213 ?> -
branches/plugin/bbp-includes/bbp-core-widgets.php
r3842 r3964 819 819 } 820 820 } 821 822 ?> -
branches/plugin/bbp-includes/bbp-extend-akismet.php
r3939 r3964 697 697 bbpress()->extend->akismet = new BBP_Akismet(); 698 698 } 699 700 ?> -
branches/plugin/bbp-includes/bbp-extend-buddypress.php
r3909 r3964 2144 2144 } 2145 2145 } 2146 2147 ?> -
branches/plugin/bbp-includes/bbp-forum-functions.php
r3918 r3964 2200 2200 do_action( 'bbp_untrashed_forum', $forum_id ); 2201 2201 } 2202 2203 ?> -
branches/plugin/bbp-includes/bbp-forum-template.php
r3855 r3964 2339 2339 return apply_filters( 'bbp_get_forum_replies_feed_link', $link, $url, $forum_id ); 2340 2340 } 2341 2342 ?> -
branches/plugin/bbp-includes/bbp-reply-functions.php
r3934 r3964 1599 1599 return $reply_position; 1600 1600 } 1601 1602 ?> -
branches/plugin/bbp-includes/bbp-reply-template.php
r3941 r3964 1980 1980 return apply_filters( 'bbp_get_form_reply_edit_reason', esc_attr( $reply_edit_reason ) ); 1981 1981 } 1982 1983 ?> -
branches/plugin/bbp-includes/bbp-template-functions.php
r3921 r3964 352 352 } 353 353 } 354 355 ?> -
branches/plugin/bbp-includes/bbp-template-loader.php
r3943 r3964 421 421 return bbp_get_query_template( 'bbpress', $templates ); 422 422 } 423 424 ?> -
branches/plugin/bbp-includes/bbp-theme-compatibility.php
r3942 r3964 1038 1038 return apply_filters( 'bbp_force_comment_status', $retval, $open, $post_id, $post_type ); 1039 1039 } 1040 1041 ?> -
branches/plugin/bbp-includes/bbp-topic-functions.php
r3919 r3964 3185 3185 } 3186 3186 } 3187 3188 ?> -
branches/plugin/bbp-includes/bbp-topic-template.php
r3935 r3964 3498 3498 return apply_filters( 'bbp_get_form_topic_edit_reason', esc_attr( $topic_edit_reason ) ); 3499 3499 } 3500 3501 ?> -
branches/plugin/bbp-includes/bbp-user-functions.php
r3919 r3964 1402 1402 } 1403 1403 } 1404 1405 ?> -
branches/plugin/bbp-includes/bbp-user-options.php
r3911 r3964 280 280 return apply_filters( 'bbp_get_user_last_posted', $time, $user_id ); 281 281 } 282 283 ?> -
branches/plugin/bbp-includes/bbp-user-template.php
r3918 r3964 1530 1530 return (bool) apply_filters( 'bbp_current_user_can_access_create_reply_form', (bool) $retval ); 1531 1531 } 1532 1533 ?> -
branches/plugin/bbp-includes/index.php
r3245 r3964 4 4 * Do not modify the files in this folder. 5 5 */ 6 7 ?> -
branches/plugin/bbp-languages/index.php
r3616 r3964 6 6 * Keep custom bbPress translations in /wp-content/languages/bbpress/ 7 7 */ 8 9 ?> -
branches/plugin/bbp-theme-compat/bbpress-functions.php
r3960 r3964 361 361 new BBP_Default(); 362 362 endif; 363 364 ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress-functions.php
r3928 r3964 306 306 new BBP_Twenty_Ten(); 307 307 endif; 308 309 ?> -
branches/plugin/bbp-themes/index.php
r3445 r3964 6 6 * Keep custom bbPress themes in /wp-content/themes/ 7 7 */ 8 9 ?> -
branches/plugin/bbpress.php
r3956 r3964 912 912 913 913 endif; // class_exists check 914 915 ?> -
branches/plugin/index.php
r3245 r3964 4 4 * Do not modify the files in this folder. 5 5 */ 6 7 ?>
Note: See TracChangeset
for help on using the changeset viewer.