Skip to:
Content

bbPress.org

{33} Commit Messages, Current Release (4877 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 (4001 - 4100 of 4877)

Changeset Author Message
[3972] johnjamesjacoby Theme Compatibility: * Update lead-topic footer text to match header text.
[4762] johnjamesjacoby Theme Compatibility: * When locating template files, filter 'bbp_get_template_stack' rather than 'bbp_get_template_part' * Fixes bug where using bbp_locate_template() directly would result in missing subdirectory locations.
[5950] netweb Theme Compatibility: Add support for `singular.php` in the root template hierarchy. This changeset adds upport for the `singular.php` fallback template introduced in [WP22314] Props mercime Fixes #2868
[7100] johnjamesjacoby Theme Compatibility: Avoid compatibility issues between MySQL versions. This commit introduces a new function - `bbp_get_empty_datetime()` - which returns a valid, filterable, "empty" MySQL formatted datetime value. This new function is used inside the theme compatibility API to ensure that global `WP_Post` datetime values are not "0" to better support MySQL 8 and higher, which is dropping support for `NO_ZERO_DATES`. Props GDragoN. In branches/2.6, for 2.6.6. Fixes #3354.
[7099] johnjamesjacoby Theme Compatibility: Avoid compatibility issues between MySQL versions. This commit introduces a new function - `bbp_get_empty_datetime()` - which returns a valid, filterable, "empty" MySQL formatted datetime value. This new function is used inside the theme compatibility API to ensure that global `WP_Post` datetime values are not "0" to better support MySQL 8 and higher, which is dropping support for `NO_ZERO_DATES`. Props GDragoN. In trunk, for 2.7.0. See #3354.
[6112] netweb Theme Compatibility: Parameter `$in_footer` in `bbp_enqueue_script()` should be boolean. This changeset updates copy-pasta introduced in [5181], `bbp_enqueue_script()` is a wrapper for `wp_enqueue_script()`, `$in_footer` boolean parameter introduced in wp:changeset:10367. Whether on purpose, or inadvertently, our scripts where being added in the footer, this commit explicitly maintains this behavior. Props thebrandonallen. Fixes #3013.
[7176] johnjamesjacoby Theme Compatibility: improve handling of shortcodes in some template functions. This commit swaps out `is_page() || is_single()` for `is_singular()` which is easier to understand, and also raises the priority of that conditional check inside `bbp_get_topics_pagination_base()`, allowing it to work as intended inside of topic views and tags shortcode usages. In branches/2.6 for 2.6.7. Fixes #3358.
[7175] johnjamesjacoby Theme Compatibility: improve handling of shortcodes in some template functions. This commit swaps out `is_page() || is_single()` for `is_singular()` which is easier to understand, and also raises the priority of that conditional check inside `bbp_get_topics_pagination_base()`, allowing it to work as intended inside of topic views and tags shortcode usages. In trunk for 2.7.0. See #3358.
[3959] johnjamesjacoby Theme Compatilibilty: * Add theme hierachy check for default bbPress styling. * Use file_exists() checks in child & parent themes before enqueuing from theme compatibility. * Fixes #1849.
[3960] johnjamesjacoby Theme Compatilibilty: * Use trailingslashit() in default styling enqueue. * See #1849.
[3178] johnjamesjacoby Theme compat CSS tweaks for forms, fieldsets, legends, labels, and inputs.
[3281] johnjamesjacoby Theme compat adjustments for user profile edit fieldsets and labels.
[2550] johnjamesjacoby Theme updates. Introduce template parts. Rename forum front template.
[6578] johnjamesjacoby Theme: Put back vendor prefixes in default template pack styling.
[4225] johnjamesjacoby Themes Compat: * Move /bbp-theme-compat/ to /bbp-themes/bbp-default/ * Update paths and uri's.
[4224] johnjamesjacoby Themes Compat: * Move /bbp-theme-compat/ to /bbp-themes/bbp-default/ * Update paths and uri's.
[4223] johnjamesjacoby Themes: * Sunset bbPress (Twenty Ten) theme as included theme. * Remove code associated with register theme directory. * Still available in the official theme repository. * See: http://wordpress.org/extend/themes/bbpress-twenty-ten/
[5770] johnjamesjacoby Tidy up SVN properties. * This first steps removes `svn:eol-style`, `svn:executable`, `svn:mime-type` on all files. * The `svn:ignore` and `svn:global-ignores` properties have been tidied up to match WordPress core. * A subsequent commit will re-instate `svn:mime-type` via `svn:auto-props`. Hat-tip DJPaul. See #2802.
[3776] johnjamesjacoby Tidy up the auto-embed options, and fix issue with setting not saving. Fixes #1752.
[4682] johnjamesjacoby Tighten up whitespace on bulk user dropdown to better match WordPress core. Fixes #2145.
[4513] johnjamesjacoby TinyMCE: * Fix tabbing from topic title. * Hat-tip MZAWeb. * Fixes #1917.
[4512] johnjamesjacoby TinyMCE: * Revert textarea output variable, changed during excerpt() sweep.
[4240] johnjamesjacoby TinyMCE: * Use teeny-weeny editor to prevent extra buttons from appearing. * Fixes #1870. * Props jaredatch.
[6881] johnjamesjacoby Titles: add comment about `8bit` mode usage of `mb_strlen()` to provide extra context. (After looking at this again, I wasn't confident it was correct. It seems to be, given how it's being used.) See #3189.
[6784] johnjamesjacoby Titles: error if forum/topic/reply title is too long. This change introduces `bbp_is_title_too_long()` and adds error messages to related forms if titles are too long. Fixes #3189.
[2537] mdawaffe To prevent meta duplication from race conditions, replication lag, etc., support sites that that choose to add a UNIQUE key to their meta table. We still need to support sites with the default keys, so don't get rid of the current if ( get ) { update } else { insert } just replace it with if ( get ) { update } else { insert on duplicate key update }
[6351] netweb Tools - Build: Disable Xdebug on stable builds of PHP when testing on Travis CI. Hat tip johnbillion. Fixes #3075.
[6060] netweb Tools - Unit Tests: Use `get_sites()` for muiltisite PHPUnit testcase in `BBP_UnitTestCase::tearDown` WordPress 4.6 deprecated `wp_get_sites()`, switch to the replacement `get_sites()` via #WP36994 / [wp:changeset:37653] Fixes #2962.
[7334] johnjamesjacoby Tools - Warnings/Notices: begin phasing out of `utf8_encode()` for PHP 8.2 and higher. This change moves the existing `utf8_encode()` usages into a new common formatting function: `bbp_format_user_display_name()`, and uses this new function to abstract & encapsulate checking that mbstring equivalents are loaded & supported. Props philipjohn. In branches/2.6, for 2.6.14. Fixes #3585.
[7335] johnjamesjacoby Tools - Warnings/Notices: begin phasing out of `utf8_encode()` for PHP 8.2 and higher. This change moves the existing `utf8_encode()` usages into a new common formatting function: `bbp_format_user_display_name()`, and uses this new function to abstract & encapsulate checking that mbstring equivalents are loaded & supported. Props philipjohn. In trunk, for 2.7. Fixes #3585.
[6909] johnjamesjacoby Tools/Repair: add missing `MAX()` in `bbp_admin_repair_freshness()`. This commit allows the freshness repair tool to correctly query for the maximum topic ID. Fixes #3261. Props GDragoN. For 2.5.x.
[6908] johnjamesjacoby Tools/Repair: add missing `MAX()` in `bbp_admin_repair_freshness()`. This commit allows the freshness repair tool to correctly query for the maximum topic ID. Fixes #3261. Props GDragoN. For 2.6 (trunk.)
[6906] johnjamesjacoby Tools/Repair: add missing apostrophe in `bbp_admin_repair_user_favorites()`. This commit allows the favorites repair tool to correctly query for chunked results. Fixes #3259. Props GDragoN. For 2.5.x.
[6905] johnjamesjacoby Tools/Repair: add missing apostrophe in `bbp_admin_repair_user_favorites()`. This commit allows the favorites repair tool to correctly query for chunked results. See #3259. Props GDragoN. For 2.6/trunk.
[7263] johnjamesjacoby Tools/Repair: audit post statuses in repair queries. This change ensures that all of the relevant repair tools are including the expected public post statuses for their related post types. These changes specifically address possibly missing Closed Topics in the repair tools, while also ensuring that anything filtering the results of the `_public_statuses()` functions to add their own custom statuses (I.E. archives on WordPress.org) are taken into consideration. Fixes #3591. Props GDragoN. In branches/2.6, for 2.6.10.
[4452] johnjamesjacoby Tools/Roles: * In user-map repair tool, use default role if role-map entry does not exist. * See #2042 (2.2 branch)
[4451] johnjamesjacoby Tools/Roles: * In user-map repair tool, use default role if role-map entry does not exist. * See #2042 (trunk)
[4344] johnjamesjacoby Tools: * Break bbp_admin_repair_user_roles() loop into 1000 user chunks. * Fixes issue where we were querying and returning too many rows at a time.
[4343] johnjamesjacoby Tools: * Cleanup repeat variable assignments. * Unset variables in costly loops to free up some resources. * Remove one-time-use variables.
[4345] johnjamesjacoby Tools: * Remove empty( $users ) check in bbp_admin_repair_user_roles(). * Handled by while() loop. * Tweak inline doc in bbp_admin_repair_user_roles().
[6438] johnjamesjacoby Tools: Add `//Filter & return` note for future discovery of missing filter documentation. Also adjust some type-casting on filtered results.
[5892] johnjamesjacoby Tools: Add `id` attribute to "Run" link. Props tharsheblows. See #2841.
[6193] netweb Tools: Add an upgrade tool for forum subscriptions. * Adds `bbp_admin_upgrade_user_forum_subscriptions()` * Renames `bbp_admin_upgrade_user_subscriptions()` to `bbp_admin_upgrade_user_topic_subscriptions()` * Updated inline docs Previously in r6174 upgrade tools were added for favorites and subscriptions, support for migrating forums subscriptions meta `_bbp_forum_subscriptions` wasn't included, rather than adding extra overhead to the existing topic subscriptions upgrade tool another upgrade tool was added for forum subscriptions. See #2959.
[6173] johnjamesjacoby Tools: Add classes & data attributes to improve responsiveness.
[6275] johnjamesjacoby Tools: Add phpdoc for `bbp_get_admin_repair_tool_registered_components()`.
[5964] netweb Tools: Add the `grunt-check-dependencies` npm module. This changeset adds the Grunt task `checkDependencies` via https://www.npmjs.com/package/grunt-check-dependencies to check the currently npm installed modules against the required modules semantic version listed in `package.json`, if the check fails a prompt to update installed npm modules is displayed and is required before other Grunt tasks can be run. Run `npm install` after updating your repo to install the module and task. Props netweb. Fixes #2893.
[6256] johnjamesjacoby Tools: Add tool to recount topics in each topic-tag. * Add callback function for the recount itself * Add translation for component list * Update a few tool titles to better represent what they do * Update tool-orders to fit new tool in the middle See #3043.
[6523] johnjamesjacoby Tools: Audit repair & upgrade tools. * Use escaped gettext variant functions where applicable * Use Query/Prepared/Results paradigm for direct database queries for easier step-through debugging * Fix a few small bugs in the engagements upgrade functions (none that affect 2.5 or beta/RC users) * General code formatting improvements and typo fixes
[6188] johnjamesjacoby Tools: Avoid duplicate entries for favorites & subscriptions. This fixes a bug in the 2.6.0 upgrade routine where running the tool multiple times could add duplicate metadata. See #2959.
[6282] johnjamesjacoby Tools: Break `tools.php` up into separate files. See #3052.
[6496] johnjamesjacoby Tools: Change BuddyPress group forum repair into an upgrade routine. This is only intended as a migration path from bbPress 1.x to 2.x, not to be rerun multiple times to force-recount the meta values & private/hidden options. See #2829.
[6257] johnjamesjacoby Tools: Correct revision for topic-tag recount tool. See #3043.
[6977] netweb Tools: Correct string in repair topic reply count tool. Props felipeloureirosantos. See #3288. For 2.6.2, branches/2.6.
[6976] netweb Tools: Correct string in repair topic reply count tool. Props felipeloureirosantos. See #3288. For 2.7, trunk. in bbp_admin_repair_topic_reply_count
[6182] johnjamesjacoby Tools: Explicitly pass `false` into `add_post_meta()`'s `$unique` parameter. Though it's the default, we can't make any mistake that meta-key's to be non-unique for this to function correctly. See #2959.
[6174] johnjamesjacoby Tools: First pass at upgrade tools for favorites & subscriptions. * Registers 2 new repair tools * Includes basic looping patterns for user-meta to post-meta Needs testing and scrutiny. See #2959.
[6135] johnjamesjacoby Tools: Fix undeclared variables and incorrect variable types, for improved PHP 7.1 compatibility. This will quiet down most of our continuous integration noise. Props hellofromTonya. Fixes #3031.
[5783] netweb Tools: Forums should not include forum meta key `_bbp_forum_id`, forums with this meta key were due to either: 1) Incorrectly added by the `bbp_admin_repair_forum_meta()` repair tool 2) Incorrectly added by an old version of one of the included bbPress importers, these were fixed in r5526 Props netweb. Fixes #2669
[6537] johnjamesjacoby Tools: Improvements to repair, upgrade, and converter tools. * Use escaped gettext equivalent functions where appropriate * Rename `description` to `title` so that more descriptive descriptions can be used per-tool in a future version * Register all scripts, and properly enqueue them only a needed * Reorder & re-title some tools to better match each other
[5960] netweb Tools: Include `forum-mod` taxonomy code in `bbp_admin_reset_handler()` This changeset adds support for deleting the forum moderator taxonomy when running the bbPress "Reset Forums" tool. Props netweb. Fixes #2898.
[5916] netweb Tools: Include pending replies in the count when running the "Count pending, spammed, & trashed replies in each topic" repair tool This changeset ensures that pending replies are included in the topic meta `_bbp_reply_count_hidden` count after running the repair tool `bbp_admin_repair_topic_hidden_reply_count()`, includes unit tests. Props netweb. Fixes #2849
[5668] netweb Tools: Introduce "Repair closed topics tool" `bbp_admin_repair_closed_topics()` See #2653
[6481] johnjamesjacoby Tools: Introduce `bbp_get_unique_array_values()` helper function. Use this when parsing private/hidden forum IDs for saving.
[6279] johnjamesjacoby Tools: Introduce new "Upgrade Forums" tools section. * Uses some awesome trickery to reuse as much of the "Repair Forums" API as possible * Introduces a few new functions to handle the output of the new screen * Removes hard-coded referencs to `bbp-repair` page, to allow usage on any relevant page (including new `bbp-upgrade`) * Makes components & overhead lists smarter, and only includes items relevant to the current view Fixes #3052.
[6925] johnjamesjacoby Tools: Make a few columns sortable. This commit adds a small UX improvement to the Repair and Upgrade tools pages, allowing for these lengthy lists to be sorted. See #3244.
[6280] johnjamesjacoby Tools: Map `bbp_tools_upgrade_page` capability to minimum admin capability. See #3052.
[6176] johnjamesjacoby Tools: Massize clean-up * Add missing function documentation blocks * Rename `_migrate_` function to `_upgrade_` * More typo fixes * Make `overhead` values clickable in list table rows * Refactor `overhead` to work more like `components`, using keys instead of literal strings See #2959.
[6283] johnjamesjacoby Tools: Move tools tab functions into `tools.php`.
[6215] johnjamesjacoby Tools: Order fav/sub upgrade by `user_id`. This makes it easier to `LIMIT` later if you need to manually chunk this. See #2959.
[5911] netweb Tools: RTL CSS generation: Switch from CSSJanus to RTLCSS * If you have used `grunt cssjanus` before, use `grunt rtlcss` now. * Requires `npm install` to update dependancies Props netweb. Fixes #2848, see #WP31332 and wp:changeset:31573
[5912] netweb Tools: Remove banners added to minified CSS files and simplified JS banner This changeset removes the banners that were previously added to minified CSS files as `grunt-contrib-cssmin` deprecated this in v0.11.0. The banner added to minified JS files has also been simplified by removing the time/date so that unnecessarily merges/updates do not trigger unneeded changes when using version control. The banner added to minified JS files is now static without the date/time, this fixes an issue where the minified file would always change because of the compiled date/time even when there were no code changes, this was causing unneeded changes when merging/updating when using version control external to bbPress. Props netweb. Fixes #2738
[6715] johnjamesjacoby Tools: Remove quotes from prepared query statements. Also use the same `esc_like()` result in 2 matched queries. Props jrf. Fixes #3168.
[6277] johnjamesjacoby Tools: Rename page functions with `_page()` suffix. Previous function names were more ambiguous than intended, and because these functions are only called internally, there is no harm in renaming them.
[6002] netweb Tools: Return unique message strings in `bbp_admin_reset_handler()` when deleting imported users and user meta vs non-imported user meta. Fixes #2928.
[6091] netweb Tools: Running the "Reset Forums" tool now deletes bbPress' custom post type revisions from the database. This changeset adds support for deleting forum, topic, and reply post types revisions to `bbp_admin_reset_handler()`. Fixes #2945.
[6281] johnjamesjacoby Tools: Separate `wp_usermeta` clean-up from database upgrade routines. Clean-up should be run after upgrades, not during. This way all results can be verified by the admin. See #3052.
[6005] netweb Tools: Travis CI The Matrix Reloaded '''The Architect''': ''The first matrix I designed was quite naturally perfect. It was a work of art. Flawless. Sublime. A triumph only equaled by its monumental failure.''
[5959] netweb Tools: Travis CI: Only test PHP 7 against WordPress 4.3 or greater This changeset updates the Travis CI test matrix to match WordPress' PHP 7 compatability, which was only added in version 4.3 so lets not let those errors in versions before 4.3 bother us ;) See #2895.
[5958] netweb Tools: Travis CI: Remove PHP7 from allowed failures list and test PHP nightly builds PHP 7 was released today, congratulations to everyone involved in the release :) Props netweb. Fixes #2895.
[6274] johnjamesjacoby Tools: Unify the tab/link experience: * Introduce function to get tools pages * Trust capability checks in core WordPress functions, and remove our own bespoke pre-checks * Add tool-box to `wp-admin/tools.php` linking to tools the user has access to This change promotes exposure to bbPress's tools pages, and makes adding third-party tools pages easier. See: #2959.
[5885] johnjamesjacoby Tools: Update "Repair Tools" to use a list-table UI: * Includes helper functions for: search, filtering, and bulk actions * Improves tool registration by including strings and feedback into an array stored in `bbpress()->admin->tools` * Introduces "Overhead" property for alerting Key Masters to the performance impact running each tool * Introduces "Components" properties for identifying which counts what tools are intersecting * Todo: use a `WP_List_Table` subclass (which bbPress has avoided needing until now) See #2841.
[6796] johnjamesjacoby Tools: Update Editor Configuration. This change removes some file-types and stops trimming whitespace from markdown files. Fixes #3197. Props netweb.
[6473] johnjamesjacoby Tools: Update `Gruntfile.js` with new admin assets directory.
[5913] netweb Tools: Update `grunt-contrib-cssmin` to v0.13.0 Changelog: https://github.com/gruntjs/grunt-contrib-cssmin/compare/v0.11.0...v0.13.0 Testing `grunt cssmin` and related bbPress Grunt tasks show no issues with `grunt-contrib-cssmin` Note: Requires `npm install` to update dependencies See #2738
[6286] johnjamesjacoby Tools: Update file paths for tools unit tests. Props thebrandonallen. Fixes #3056.
[6178] johnjamesjacoby Tools: Update forum/topic/reply admin classes to avoid screens without `post_type` parameters. Fixes edge-case debug notices when tools pages for third-party plugins are doing advanced things. See #2959.
[6278] johnjamesjacoby Tools: Update some reset text in `bbp_admin_reset_page()`.
[5963] netweb Tools: Update the `priority` array values of individual repair tools in `bbp_register_default_repair_tools()` This changeset fixes an issue where the `bbp_admin_repair_topic_meta()` repair tool was not included in the list table. Props netweb, thebrandonallen. Fixes #2859.
[6177] johnjamesjacoby Tools: Update tools text to include favorites & subscriptions. See #2959.
[6175] johnjamesjacoby Tools: Use `$total` count in `bbp_admin_migrate_user_favorites()`. Also update revision number in function docs. See #2959.
[5899] johnjamesjacoby Tools: Use `_admin_search_query()`. See #2841.
[6593] johnjamesjacoby Tools: Use `delete_metadata()` to remove favs & subs without a `foreach` loop.
[6181] johnjamesjacoby Tools: Use `explode()` instead of `maybe_unserialize()`. User-meta values were strings to enable `FIND_IN_SET()` usages. See #2959.
[6189] johnjamesjacoby Tools: Use `get_results()`, and don't delete usermeta. (Maybe we should have a separate clean-up tool once it's confirmed to be OK.) See #2959.
[6513] johnjamesjacoby Tools: Use escaping gettext functions in admin area Reset Tool.
[6276] johnjamesjacoby Tools: Use new `bbp_get_tools_admin_pages()` function when removing mock admin-pages. Fixes bug where third-party tools pages would not get removed.
[5988] netweb Tools: Use updated meta key `_bbp_old_user_id` to determine imported users in `bbp_admin_reset_handler()` This changeset updates the meta key used to determine an imported user for handling the deletion of imported users in the reset forums tool, this should have originally been included in r5530 but was missed. See #2650
[6393] johnjamesjacoby Tools: User `and` over `&` for easier translation. Props casiepa. Fixes #3096.
[6664] johnjamesjacoby Tools: add optional `description` text to upgrade & repair tools. This change hopefully adds some real-world context to otherwise mysterious functionality, in an attempt to better explain why any specific routine should be run vs. any others. Trunk, for 2.6. See #3149.
[6934] johnjamesjacoby Tools: allow repairs to also be pending. This commit makes Repairs work like Upgrades, allowing for repair tools to also be pending. It adds a $type parameter to a few functions to allow grouping or separating, depending on the count context. See #3052.
Note: See TracReports for help on using and creating reports.