Skip to:
Content

bbPress.org

{33} Commit Messages, Current Release (4934 matches)

Report designed to help manage the list of contributors.

Note: If you'd like a RSS feed of the changesets a they happen, Please use the timeline rss feed instead.

Results (2401 - 2500 of 4934)

Changeset Author Message
[5823] johnjamesjacoby Introduce `core/abstraction.php` to provide a layer of protection against touching common WordPress global variables directly. This commit introduces a few new helper functions to protect sensitive global variables, and also introduces the ability to filter and override them explicitly within the scope of the bbPress plugin. These functions will be used in place of existing global touches in future commits. See #2786.
[5378] johnjamesjacoby Introduce `bbp_validate_reply_to()` function, used to: * Validate a parent reply is actually a reply post_type. * A reply is not accidentally assigning itself as its own parent. * An integer is returned. Fixes hiesenbug where calls to `bbp_get_reply_id()` were unexpectedly and occasionally returning the current reply ID rather than 0. See #2588. (trunk)
[5377] johnjamesjacoby Introduce `bbp_validate_reply_to()` function, used to: * Validate a parent reply is actually a reply post_type. * A reply is not accidentally assigning itself as its own parent. * An integer is returned. Fixes hiesenbug where calls to `bbp_get_reply_id()` were unexpectedly and occasionally returning the current reply ID rather than 0. See #2588. (2.5 branch)
[5365] johnjamesjacoby Introduce `bbp_sanitize_slug()` function for sanitizing permalink slugs, and use it as the callback for any slug settings. Props mazengamal. See #2496 (trunk).
[5366] johnjamesjacoby Introduce `bbp_sanitize_slug()` function for sanitizing permalink slugs, and use it as the callback for any slug settings. Props mazengamal. See #2496 (2.5 branch).
[5369] johnjamesjacoby Introduce `bbp_sanitize_displayed_user_field()` function to handle the sanitizing of displayed user data, and add it to the `bbp_get_displayed_user_field` filter. Props mazengamal. See #2610 (trunk).
[5370] johnjamesjacoby Introduce `bbp_sanitize_displayed_user_field()` function to handle the sanitizing of displayed user data, and add it to the `bbp_get_displayed_user_field` filter. Props mazengamal. See #2610 (2.5 branch).
[5390] johnjamesjacoby Introduce `bbp_get_reply_ancestors()` function to help with reply hierarchy dropdown. Also conveniently wraps logic incase we ever move to a real hierarchical post type. See #2617.
[6051] netweb Introduce `bbp_get_major_wp_version()` function to help checking against WordPress versions See #2874
[5826] johnjamesjacoby Introduce `bbp_get_global_object()` to help with verifying & retrieving global variables before interacting with them. See #2786.
[5409] johnjamesjacoby Introduce `bbp_get_do_not_reply_address()` function, and use in subscription notification functions. Also add filters to make changing these values easier for advanced setups. Fixes #2618.
[5389] johnjamesjacoby Introduce `BBP_Walker_Reply_Dropdown` to help with reply hierarchy dropdown. Also update other Walker class extensions and associated documentation to be a bit more accurate and reliable. See #2617.
[2787] johnjamesjacoby Introduce _get_ functions for forums, topics, and replies. Fixes #1415. Props !GautamGupta via Google Code-in
[2780] johnjamesjacoby Introduce _content functions for topics and replies. Introduce our own allowed_tags for handling HTML. Add nofollow to links in content. Properly sanitize topic and reply slugs. Fixes #1426, #1389, #1411. Props !GautamGupta via Google Code-in
[5146] netweb Introduce XenForo bbPress importer. Props netweb. Fixes #2403
[5144] netweb Introduce XMB bbPress importer. Props netweb. Fixes #2404
[2514] johnjamesjacoby Introduce Walker class (from WP page Walker) plus main class cleanup
[4718] johnjamesjacoby Introduce Vanilla converter tool. Props netweb. Fixes #2179.
[3378] johnjamesjacoby Introduce UI for 'Allow Global Access' setting for multisite installations. Functionality to follow.
[4639] johnjamesjacoby Introduce SimplePress 5 importer. Props netweb. Fixes #2074.
[5191] netweb Introduce SMF v2.x bbPress importer. Props netweb. Fixes #2380
[5154] netweb Introduce PunBB v1.4.x bbPress importer. Props netweb. Fixes #2379
[5142] netweb Introduce Phorum bbPress importer. Props netweb. Fixes #2382
[5143] netweb Introduce PHPWind bbPress importer. Props netweb. Fixes #2395
[5147] netweb Introduce PHPFox bbPress importer. Props netweb. Fixes #2415
[5141] netweb Introduce MyBB bbPress importer. Props netweb. Fixes #2378
[4692] johnjamesjacoby Introduce Mingle converter. Props netweb. Fixes #2163.
[5145] netweb Introduce Kunena Forums for Joomla bbPress importers. Props netweb. Fixes #2402 * Kunena1.php for Kunena v1.x Forums * Kunena2.php for Kunena v2.x Forums * Kunena3.php for Kunena v3.x Forums
[3496] johnjamesjacoby Introduce Genesis theme framework compatibility class. * Fixes error messages thrown by bbPress theme compatibility when using Genesis. * Moves extension loading onto 'bbp_ready' action in bbp-core-hooks.php to ensure bbPress has initialized. * Adds missing post data to bbp_theme_compat_reset_post() to prevent debug notices. * Fixes table width when in theme compatibility mode. See #1622. Props jaredatch for original patch.
[5139] netweb Introduce FluxBB bbPress importer. Props netweb. Fixes #2383
[5138] netweb Introduce Drupal v7.x bbPress importer. Props netweb. Fixes #2375
[3419] johnjamesjacoby Introduce BBP_Updater class to more accurately handle conditions where activation hooks might not fire on multisite installations, and to flush rewrite rules at the appropriate time on updates. Fixes #1569.
[2700] johnjamesjacoby Introduce BBP_Component class. Change alternate class to even/odd.
[5140] netweb Introduce Advanced Electron Forum v1.x bbPress importer. Props netweb. Fixes #2384
[4820] johnjamesjacoby Introduce 'bbp_locate_template' action to bbp_locate_template(), with inline documentation for intended usage. Fixes #2277.
[6803] johnjamesjacoby Intercept: updates to `bbp_maybe_intercept()`: * Use `bbp_parse_args()` internally * Compare against known default return value * Use `call_user_func_array()` to avoid using `extract()` This change allows the intercept API to work a bit more smoothly with filters that have multiple arguments passed into them. Previous to this, those filters may have dropped their arguments, or otherwise not passed the proper arguments into their filter call. This fixes a regression related to BuddyPress profile URL overrides. See #3814.
[6816] johnjamesjacoby Intercept: return default value if an invalid number of args is parsed. Also pass a `$user_id` into favorites & subscriptions links functions. These changes together will prevent notices & errors in certain intercept conditions.
[6752] johnjamesjacoby Intercept: invert comparison in `bbp_is_intercepted()`. I was testing it to make sure it worked correctly, and forgot to switch it back before r6751. See #3184.
[6751] johnjamesjacoby Intercept: first pass intercept API. This change introduces 3 new functions for generating a default intercept value and comparing against it in specific places. If the return value differs from the default intercept value, we know that function call was intercepted by a filter, and that value will become the new return value without executing the remaining part of the function. See #3184.
[5843] johnjamesjacoby Installation: When creating initial content, use the same `current_time( 'mysql' )` for all new posts. This changeset prevents the related unit test from incorrectly failing by ensuring that no initial content is created 1 second after any other.
[5883] netweb Installation: When creating initial content, use different times for forum, topic, and reply post times. This changeset builds on r5843 to allow improved tests in `test_bbp_create_initial_content()` of forum and topic last active times.
[5712] netweb Install/Update: Don't add reply titles in sample forum content `bbp_create_initial_content()`, reply title requirements were removed in r5177. Props netweb. Fixes #2795
[5775] johnjamesjacoby Inserts: When inserting a forum/topic/reply, immediately update the new object so hierarchy is refreshed. This commit addresses the last active post ID being incorrect after inserting topics and replies to a forum, and fixes a failing test (in `BBP_Tests_Core_Update::test_bbp_create_initial_content`). See #2805.
[6477] johnjamesjacoby Inserts: Only prefix meta keys if not already prefixed when inserting forum/topic/reply.
[6756] johnjamesjacoby Inline documentation improvements from r6755.
[3309] johnjamesjacoby Inline doc fixes, whitespace clean-up.
[6115] netweb Indentation fixes, tabs, not spaces.
[5371] johnjamesjacoby Indentation clean-up and assignment clarifycation in `bbp_get_reply_to()`. See #2588.
[5357] johnjamesjacoby Indent with tabs in `package.json`
[4434] johnjamesjacoby Increase default textarea rows from 6 to 12. Feels like a better balance between normal and fancy editors.
[5569] netweb Include topic-tag descriptions in bbPress 1.x importer * Props thebrandonallen for initial patch * Fixes #2710
[5176] netweb Include support for custom topic tag slugs and descriptions during import. Props netweb. Fixes #2399 * Support included for bbPress v1.x , Drupal, Example, PHPFox, vBulletin v3.x & v4.x
[5254] netweb Include backend admin open and close forum row actions. Props netweb. Fixes #2491.
[5546] netweb Include anonymous topic and reply import support in vBulletin 3 (`vBulletin3.php`) and vBulletin 4 (`vBulletin.php`) importers Props netweb. See #2347
[5539] netweb Include anonymous topic and reply import support in `phpBB.php` and `SMF.php` importers Props netweb. See #2347
[5541] netweb Include anonymous topic and reply import support in `Drupal7.php` importer Props netweb. See #2347
[5550] netweb Include anonymous topic and reply import support in XMB 1.x (`XMB.php`) and PunBB (`PunBB.php`) importers Props netweb. See #2347
[5548] netweb Include anonymous topic and reply import support in SimplePress 5 (`SimplePress5.php`) importer Props netweb. See #2347
[5551] netweb Include anonymous topic and reply import support in Phorum (`Phorum.php`) importer Props netweb. Fixes #2703
[5554] netweb Include anonymous reply author name in `Drupal7.php` importer. Props netweb. See #2347
[5230] netweb Include `bbp_is_replies_created` in bbPress CSS body classes and include `bbp_is_replies_created` in `is_bbpress()` function. Props netweb. Fixes #2489
[5696] johnjamesjacoby Include `2.5.7` in `readme.txt` changelog (for trunk) and bump stable tag
[5645] johnjamesjacoby Include `2.5.6` changelog entry in `readme.txt`. (trunk)
[5599] netweb Include WordPress v4.1 in Travis CI tests
[5819] netweb Include 2.5.8 in readme.txt changelog (for trunk) and bump stable tag
[5278] netweb Include .gitignore file for Git based repo. See #2542
[5170] netweb Include 'sticky' and 'super sticky' import capabilities for the following forum importers: * AEF, Drupal7, Example, FluxBB, Invision, Mingle, MyBB, phpBB, PHPFox, PunBB, SimplePress, vBulletin v4.x, vBulletin v3.x, Xenforo and XMB forum importers
[5516] netweb Include 'default' forum status and forum type meta keys in importers for databases that do not support these values. * Forum status: `_bbp_status` = `open` meta * Forum type: `_bbp_forum_type` = `forum` Props netweb. See #2647
[5418] netweb Include 'Forum Type' - `_bbp_forum_type` and 'Forum Status' `_bbp_forum_status` in Example.php importer
[4778] johnjamesjacoby In topic new/edit handlers, don't check unnecessary error conditions. Props alex-ye. Fixes #2220.
[3137] johnjamesjacoby In the single topics loop, wrap topic meta items in spans for easier styling for theme compat.
[3214] johnjamesjacoby In the beginning, there was cold, white, empty, space... in bbp-admin.php.
[5478] johnjamesjacoby In the `form-topic.php` template part, check for 'bbp_get_forum_title()` before outputting an empty title. Props jreeve. Fixes #2625.
[4990] johnjamesjacoby In the _insert_ and _handler_ functions, do some one-time-use variable clean-up, and add some brackets for improved readability.
[4941] johnjamesjacoby In the BuddyPress extension, use slug helper functions to define navigational elements. This will allow customization of slugs in profiles to integrate with BuddyPress 1.8 rewrite rules. Also use the BP_Component slug rather than hardcoded 'forums' in the event this slug becomes customizable in the future.
[4881] johnjamesjacoby In the BuddyPress Activity extension, move _update() methods from 'wp_insert_post' onto 'edit_post' action to prevent running them on topic/reply creation accidentally. Fixes bug causing hide_sitewide to incorrectly be set to true on some installations. Also some code clean-up and additional type-casting where appropriate. Fixes #2327 (trunk)
[4882] johnjamesjacoby In the BuddyPress Activity extension, move _update() methods from 'wp_insert_post' onto 'edit_post' action to prevent running them on topic/reply creation accidentally. Fixes bug causing hide_sitewide to incorrectly be set to true on some installations. Also some code clean-up and additional type-casting where appropriate. Fixes #2327 (2.3 branch)
[5355] johnjamesjacoby In template stack functions, wrap `function_exists()` checks with `is_array()` check. Allows class methods to be used as template stack locations. See: https://buddypress.trac.wordpress.org/ticket/5671
[4627] johnjamesjacoby In phpBB converter, use topic_status to make sure topics stay closed after conversion. Props netweb. Fixes #2123.
[5511] johnjamesjacoby In our BuddyPress Groups `display_forums` method, `break` out of switch statement rather than `return`. This prevents malformed markup caused by not allowing the method to continue on. Hat-tip boonebgorges, netweb. Fixes #2595.
[4594] johnjamesjacoby In loop-single-reply/topic templates, replace "post-ID" with correct post type for query. Fixes issues with duplicate element ID's. Fixes #1980.
[4715] johnjamesjacoby In favorite/subscription handlers, default redirect to get_permalink( $topic_id ) if no other match is found. Fixes #2160.
[4787] johnjamesjacoby In breadcrumb, skip crumb if parent is empty or an error.
[2999] johnjamesjacoby In bp_has_topics(), check that $sticky_posts exist before attempting to loop through them.
[4552] johnjamesjacoby In bbp_verify_nonce_request(), parse home_url() to remove any strange characters or query-strings that plugins might append to it. Fixes #2070.
[5029] johnjamesjacoby In bbp_verify_nonce_request(), add support for local installations that include a port in home_url(). Fixes #2196.
[5087] johnjamesjacoby In bbp_user_can_view_forum(), pass the $user_id into bbp_is_user_keymaster(). Fixes issue where bbp_user_can_view_forum() may return incorrect results for users with the Keymaster role. Props alex-ye. Fixes #2393.
[4965] johnjamesjacoby In bbp_update_reply_to(), allow $reply_to to be 0 and delete if it's being set to empty. See #2340.
[4964] johnjamesjacoby In bbp_update_reply_to(), allow $reply_to to be 0 and delete if it's being set to empty. See #2340.
[4588] johnjamesjacoby In bbp_time_since(), do not noop $newer_date variable when passed to bbp_get_time_since(). Fixes #2115.
[5110] johnjamesjacoby In bbp_template_include_theme_compat(), bail out early when a root template has already been previously located. Fixes issues with recursive calls to the 'the_content' filter. Fixes #2429. (2.5)
[5109] johnjamesjacoby In bbp_template_include_theme_compat(), bail out early when a root template has already been previously located. Fixes issues with recursive calls to the 'the_content' filter. Fixes #2429. (2.4.1)
[4608] johnjamesjacoby In bbp_template_include_theme_compat(), bail early if is_buddypress(). Fixes #2104.
[5122] johnjamesjacoby In bbp_request_feed_trap(), check that post type being requested is a bbPress post type before proceeding. Improves compatibility with other custom feed handlers. Props alex-ye. Fixes #2308. (2.5)
[5123] johnjamesjacoby In bbp_request_feed_trap(), check that post type being requested is a bbPress post type before proceeding. Improves compatibility with other custom feed handlers. Props alex-ye. Fixes #2308. (2.4.1)
[4758] johnjamesjacoby In bbp_profile_update_role(), add additional checks to prevent accidental role changes.
[4922] johnjamesjacoby In bbp_pre_get_posts_normalize_forum_visibility(), run $post_types array through implode() and do an explicit comparison. Fixes issue with multi-type queries getting incorrect post-status query-vars.
[4807] johnjamesjacoby In bbp_pre_get_posts_exclude_forums(), switch logic to remove statuses from existing queries rather than recalculating them completely. Hat tip alex-ye. Fixes #2221.
[4916] johnjamesjacoby In bbp_parse_args(), switch $defaults default from string to array, and add some brackets to improve readability. Also, only perform an array_merge() if the array to merge with is not empty.
[4914] johnjamesjacoby In bbp_parse_args(), switch $defaults default from '' to array(), and add some brackets to improve readability.
Note: See TracReports for help on using and creating reports.