Skip to:
Content

bbPress.org

{33} Commit Messages, Current Release (4820 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 (1501 - 1600 of 4820)

Changeset Author Message
[6293] netweb Converters: Fix PHPDoc indentation in `Invision.php`
[6449] johnjamesjacoby Converters: Fix formatting on several converter methods.
[7014] johnjamesjacoby Converters: PHP7.4 code compatibility. This commit uses the correct array syntax in the Invision converter, to avoid fatal erroring in PHP7.4+. Props jrf. Fixes #3299. For 2.6.3, branches/2.6.
[7015] johnjamesjacoby Converters: PHP7.4 code compatibility. This commit uses the correct array syntax in the Invision converter, to avoid fatal erroring in PHP7.4+. Props jrf. Fixes #3299. For 2.7, trunk.
[6476] johnjamesjacoby Converters: Port r5332 to 2.5 branch. See #2558, #3112.
[4201] johnjamesjacoby Copy /branches/plugin/ to /trunk/
[2470] johnjamesjacoby Copy paste owns me.
[4209] johnjamesjacoby Core Functions: * Simplify logic in bbp_has_errors().
[3899] johnjamesjacoby Core: * Add new bbp-core-functions.php file to bbp-includes. * Move functions out of bbp-common-functions.php and into bbp-core-functions.php and bbp-topic-template.php. * Paves way for bbPress function map API.
[6672] johnjamesjacoby Core: Add `source` parameter to API registrations. This change makes it easier to target bbPress-specific post types & statuses, and taxonomies. `source` may not be the final key, but thankfully all of these APIs accept additional keys, and if support is added to core eventually, we can easily migrate over to it without problems. Trunk, for 2.6. See: https://core.trac.wordpress.org/ticket/41739
[6329] johnjamesjacoby Core: Allow custom post authors for initial content (forum/topic/reply).
[5736] johnjamesjacoby Core: Correct phpdoc to `_update_` functions. Also introduce `bbp_update_reply_to_id()` to help with saving of hierarchical reply metadata. (Will be used in a future commit.)
[5733] johnjamesjacoby Core: Force-clear post caches on several common moderation actions. Fixes inconsistencies around cached objects related to counts, which are currently stored in metadata. Props thebrandonallen, netweb. See #2801.
[6353] johnjamesjacoby Core: General core function clean-up. Mostly odds & ends, formatting, type-casting, etc...
[6531] johnjamesjacoby Core: Register, then enqueue, both scripts and styles. This commit makes sure that theme compatibility styles & scripts are properly registered & enqueued. Props r-a-y. Fixes #3115.
[5945] netweb Core: Restore empty `$wp_filter[ $tag ]` check and update PHPDoc in `bbp_get_template_stack()` See #2871
[5735] johnjamesjacoby Core: Return the filtered results of ID's in core `_update_` functions. This helps with various type-casting improvements going into #2801.
[6058] johnjamesjacoby Core: Revert accidental removal of r6054 from r6056.
[5944] netweb Core: Support for `WP_Hook` in `bbp_get_template_stack()` The proposed `WP_Hook` #WP17817 breaks backward compatibility for plugins that attempt to manipulate `$wp_filter` in certain ways. For bbPress, it means that we cannot directly modify the callbacks that are currently registered as an array at `$wp_filter[ $tag ]`, in `bbp_get_template_stack()`. Instead, when `WP_Hook` is not available, we assign the callbacks to a variable (leveraging `WP_Hook`'s `ArrayAccess`) and manipulate the variable. Props jbrinley. Fixes #2871
[6183] johnjamesjacoby Core: Upgrade routine for favorites & subscriptions in 2.6.0. * Use the new upgrade tools * Bump the DB version to `260` * Improve inline docs in upgrade tool functions See #2959.
[6039] johnjamesjacoby Core: pass the original text into `bbp_make_clickable` filter.
[7282] johnjamesjacoby Core: remove reference to bbPress::setup_globals() This method was removed long ago, and replaced by the `bbp_setup_globals` sub-action.
[7281] johnjamesjacoby Core: small updates to bbPress()->data This change tweaks the code commentary a bit, and adds a default value of an empty array. This is largely for the sake of code cleanliness, but also removes the potential for debug notices or errors inside of the magic methods from `data` not being initialized as an array when they are first called.
[4802] johnjamesjacoby Correct /users/template-tags.php inline doc typo. Props netweb. Fixes #2251.
[2738] johnjamesjacoby Correct @since docs
[2554] johnjamesjacoby Correct @since's
[5410] johnjamesjacoby Correct `bbp_stuck_topic` phpdoc. See #2494.
[2797] johnjamesjacoby Correct cap on Add User admin menu, and add cap check to submenus. Fixes #1368
[4801] johnjamesjacoby Correct closing HTML tag helper doc in content-single-topic-lead.php Props netweb. Fixes #2252.
[3616] johnjamesjacoby Correct core languages path in bbp-languages/index.php
[4794] johnjamesjacoby Correct file description in content-statistics.php. Props alexvorn2. Fixes #2247.
[2475] chrishajer Correct function name and add information to cookies for anonymous posting. Fixes #1311. Props !GautamGupta
[5474] johnjamesjacoby Correct inline doc in `bbp_forum_get_subforums()`.
[4907] johnjamesjacoby Correct the error ID's used when posting a new reply if the forum is closed, private, or hidden, and the user does not have proper capabilities. (2.3 branch)
[4904] johnjamesjacoby Correct the error ID's used when posting a new topic if the forum is closed, private, or hidden, and the user does not have proper capabilities. (2.3 branch)
[4903] johnjamesjacoby Correct the error ID's used when posting a new topic if the forum is closed, private, or hidden, and the user does not have proper capabilities. (trunk)
[4936] johnjamesjacoby Correct typo that snuck in after testing. See #1500.
[6319] johnjamesjacoby Correct typos in User Template phpdoc blocks.
[2803] johnjamesjacoby Correctly check for WP_Error and correctly load anonymous user cookie data/avatar. Fixes #1452. Props !GautamGupta
[5404] johnjamesjacoby Correctly compare source & destination topic `post_date` values in `bbp_merge_topic_handler()`. Fixes issue where incorrect post would be updated when merging older topics into newer ones. Also update the reply position for all newly relocated replies. Hat-tip netweb. Fixes #2528.
[3844] johnjamesjacoby Correctly show sticky topics when viewing a topic archive or using a topic archive shortcode.
[6923] johnjamesjacoby Counts (meta-data): full audit of forum/topic/reply, public/non-public counts. This commit is the result of a full count audit, exposing multiple inconsistencies and voids in relation to how public and non-public counts are (re)calculated. For instance, hidden forum replies are not counted at all, until now. By introducing a new Repair tool, hidden forum reply counts are now counted. In addition, there were multiple bugs with topic & reply moderation, where the act of approving or unapproving topics or replies would cause the numbers to be inaccurate, or where topics & replies being caught in moderation were still increasing public counts. It was also possible to, as a Key Master, publicly reply to unapproved topics, which was a completely unanticipated side-effect of allowing Key Masters to do pretty much anything. Going forward, the default reply status is the topic status, but is still beholden to all existing moderation settings and user role capabilities. This results in a more sane user experience, and prevents the unusual circumstance of there being "0 topics and 30 replies" in public-facing forums. Certain count increase/decrease actions have been reprioritized to avoid collisions and race conditions, proving once again that ya gotta get up to get down. See #2838. Fixes #1799.
[6610] SergeyBiryukov Counts: Fix typo in DB query in `bbp_get_user_reply_count_raw()`. See #3124.
[6827] johnjamesjacoby Counts: Introduce a cacheable parent/type/status wrapper, filter helpers. This change introduces a common query function for totalling up all counts by type & status, and caching the results for later usages. By doing this, we can avoid running multiple queries for the same public or non-public counts. Also uses `bbp_number_not_negative()` in a few places where negative counts are never allowed.
[6609] johnjamesjacoby Counts: Remove `count_user_posts()` usages, and always return an `int`. User topic & reply counts haven't included `closed` status for topics, and these wrappers should include support for things like `view=all` later. Fixes #3124.
[6792] johnjamesjacoby Counts: introduce sub-action for post status transitions. We'll use this for micro-managing child post counts on a per-type, per-status basis. See #1799.
[4520] johnjamesjacoby Create 1.2 branch: * Uses correct BackPress/pomo externals * See #1857.
[3537] johnjamesjacoby Create 2.0 branch
[4076] johnjamesjacoby Create 2.1 branch.
[4442] johnjamesjacoby Create 2.2 branch.
[4850] johnjamesjacoby Create 2.3 branch.
[5098] johnjamesjacoby Create 2.4 branch from trunk.
[5202] johnjamesjacoby Create 2.5 branch.
[6939] johnjamesjacoby Create 2.6 branch (from trunk)
[3526] johnjamesjacoby Create bbPress 1.1 Branch.
[5818] netweb Create tag 2.5.8.
[4385] johnjamesjacoby Credits: * Clean up copy pasta. * Props jmdodd. * See #2018.
[4384] johnjamesjacoby Credits: * Hardcode some credits for a first pass for 2.2. * Will want to use api.wordpress.org eventually. * Fixes #2018.
[4459] johnjamesjacoby Credits: * Update incorrect link. * Fixes #2044 (2.2 branch)
[4458] johnjamesjacoby Credits: * Update incorrect link. * Fixes #2044 (trunk)
[6395] johnjamesjacoby Credits: Add "Project Emeriti" section, and add Sergey & Brandon as Contributing Developers. Also update the tagline.
[6394] johnjamesjacoby Credits: Remove superfluous `alt` text for project leaders and contributors. Props mercime. Fixes #3099.
[5952] netweb Credits: Update H4 to H3 This changeset improves accessibility and brings bbPress' credits area headers up to par with WordPress 4.4. Fixes #2890. See #WP34263.
[5452] netweb DB schema change for `wp_bbconverter_translator` converter sync table * Increase `meta_key` maximum characters from 25 o 255 to allow for longer meta keys during import See #2650
[5543] netweb DB schema change for `wp_bbconverter_translator` converter sync table * Increase `meta_value` maximum characters from 25 o 255 to allow for longer meta values during import See #2650
[5401] johnjamesjacoby De-deprecate `bbp_remove_roles()` and use it in: `bbp_admin_reset_handler()`, bbp_do_uninstall()`, and `bbp_version_updater()`. Fixes bug where old bbPress role data could still exist in `wp_user_roles`. See #2065. Fixes #2580.
[5057] johnjamesjacoby De-deprecate bbp_remove_roles() so database role removal is still supported.
[4154] johnjamesjacoby Deactivation: * Introduce bbp-core-dependency.php and move plugin dependency actions and filters into it. * Switch load order to remove possible debug notices on deactivation. * Only load -core- files on deactivation; the others are not needed at that time.
[3797] johnjamesjacoby Decode $post_content for wp_editor in bbp_get_the_content(). Fixes #1770. Props alexvorn2, props jaredatch.
[4697] johnjamesjacoby Decode blogname in notification emails. Props netweb. Fixes #2172.
[2792] johnjamesjacoby Decode special characters when editing topics/posts [0.9 branch]
[3390] johnjamesjacoby Decomplicate bbPress includes procedure. Fixes #1570. Props andy.
[2914] johnjamesjacoby Decouple bbp_is_ functionality from bbp_get_{post_type}_id functionality, and use correctly through-out. Add ability to show all forums regardless of post_parent, and fix forums widget to use this functionality correctly.
[5487] johnjamesjacoby Dedicated filters to allow manipulating of users who will receive subscription emails. Hat tip roysmyth. Fixes #2627.
[2826] johnjamesjacoby Deemphasize the admin links when viewing a single topic.
[2910] johnjamesjacoby Default $meta_value to null in bb_delete_usermeta() to play nicely with BackPress WP_User::delete_meta(). Props mdawaffe.
[3947] johnjamesjacoby Default Options: * Clean up bbp_get_default_options() to make it easier to read.
[6969] johnjamesjacoby Default Styling: Optionally support an RTL variant of bbpress.css. This commit allows for either/or `bbpress.css` or `bbpress-rtl.css` to exist and be enqueued as styling in the template stack, fixing a regression from 2.6.0 where the RTL CSS was expected to be appended to the end of the file. This allows for both files to be included if they both exist, or one of them if only one does, effectively covering all bases for 2.5 and 2.6 support. Props scmsteve for persistence. Fixes #3218. For 2.6.2, branches/2.6.
[6968] johnjamesjacoby Default Styling: Optionally support an RTL variant of bbpress.css. This commit allows for either/or `bbpress.css` or `bbpress-rtl.css` to exist and be enqueued as styling in the template stack, fixing a regression from 2.6.0 where the RTL CSS was expected to be appended to the end of the file. This allows for both files to be included if they both exist, or one of them if only one does, effectively covering all bases for 2.5 and 2.6 support. Props scmsteve for persistence. Fixes #3218. For 2.7, trunk.
[3861] johnjamesjacoby Default show_role to false, and override to true when needed, for backwards compatibility. See #1815.
[2542] johnjamesjacoby Default to current forum. Cast return ID's as integers.
[3412] johnjamesjacoby Default to the current user ID in bbp_is_user_deleted()
[3594] johnjamesjacoby Define local variables in bbpress.php to prevent strict notices.
[6825] xknown Define the `BB_URI_CONTEXT_BB_INSTALLER` constant to avoid PHP warnings.
[3639] johnjamesjacoby Delete '_bbp_last_active_time' key from postmeta when doing freshness recalculation. (2.1)
[3640] johnjamesjacoby Delete '_bbp_last_active_time' key from postmeta when doing freshness recalculation. Props lillelykke. (2.0 branch)
[4200] johnjamesjacoby Delete /trunk so /branches/plugin/ can be copied into it.
[3534] johnjamesjacoby Delete 0.9.0.7 tag (added instead of copied)
[3529] johnjamesjacoby Delete 1.1 branch (added instead of copied)
[3528] johnjamesjacoby Delete 1.1 tag (added instead of copied)
[4897] johnjamesjacoby Delete the correct 'bbpress_users' cache group for subscriptions and favorites. See #2331.
[5411] johnjamesjacoby Delete trashed and spam topic-meta when performing untrash or unspam actions. Hat tip netweb. See #2494.
[4524] johnjamesjacoby Deleting: * When deleting a forum or topic, make sure all child content is deleted also. * Also add some inline doc, and unset query variables, and clean up messy inline comparisons. * Props MZAWeb. * Fixes #2059.
[7075] johnjamesjacoby Dependencies: routine updating of node dependency tree.
[7074] johnjamesjacoby Dependencies: routine updating of node dependency tree.
[5413] johnjamesjacoby Deprecate `bbp_notify_subscribers()` for new `bbp_notify_topic_subscribers()` function, to better match `bbp_notify_forum_subscribers()` introduced in 2.5.
[5561] johnjamesjacoby Deprecate `tabindex` functions and their usages. Props joedolson. Fixes #2714.
[5268] johnjamesjacoby Deprecate dashboard metabox, and append forum statistics to existing "At a Glance" metabox instead. Fixes #2544.
[4874] johnjamesjacoby Deprecate the 'bbp_get_the_body_class' filter in bbp_body_class(). Fixes #2316 (2.3 branch)
[4873] johnjamesjacoby Deprecate the 'bbp_get_the_body_class' filter in bbp_body_class(). Fixes #2316 (trunk)
Note: See TracReports for help on using and creating reports.