[5639]
|
netweb
|
Use `preg_replace` over incorrect `ltrim` usage in `bbp_get_do_not_reply_address()` causing undeliverable or invalid subscription emails in certain situations because the "from" address was incorrect.
Props DJPaul. See #2618 (2.5 Branch)
|
[6068]
|
johnjamesjacoby
|
Use `length-zero-no-unit` over `number-zero-length-no-unit` in `.stylelintrc`.
Deprecated in 7.0 of stylelint.
|
[5306]
|
netweb
|
Use `height: auto;` alongside `max-width: 100%;` in `bbpress.css` to maintain image aspect ratio. Props robin-w. Fixes #2553
|
[5625]
|
johnjamesjacoby
|
Use `hash_equals()` when comparing email hash to submission link. Props jdgrimes. (trunk)
|
[5628]
|
johnjamesjacoby
|
Use `hash_equals()` when comparing email hash to submission link. Props jdgrimes. (2.5 branch)
|
[5475]
|
johnjamesjacoby
|
Use `exclude` instead of post__not_in, in `bbp_get_forums_for_current_user()`.
|
[5261]
|
johnjamesjacoby
|
Use `content_url()` rather than `WP_CONTENT_URL` for style and script enqueue functions, fixing insecure content warnings when using SSL theme-side. Props tonyrix. Fixes #2518. (trunk)
|
[5262]
|
johnjamesjacoby
|
Use `content_url()` rather than `WP_CONTENT_URL` for style and script enqueue functions, fixing insecure content warnings when using SSL theme-side. Props tonyrix. Fixes #2518. (2.5 branch)
|
[6337]
|
johnjamesjacoby
|
Use `bbp_rel_nofollow()` in deprecated `bbp_mention_filter()` for the sake of parity & coverage. See #3067.
|
[6336]
|
johnjamesjacoby
|
Use `bbp_rel_nofollow()` in `bbp_make_mentions_clickable_callback()`. See #3067.
|
[5325]
|
johnjamesjacoby
|
Use `basename` instead of `file` in plugin action links. Props DJPaul. Fixes #2567.
|
[5464]
|
netweb
|
Use `Topic Tag` term for singular topic tag context in 'at a glance' dashboard metabox. Fixes #2544
|
[4658]
|
johnjamesjacoby
|
Use _wp_specialchars() instead of deprecated wp_specialchars().
|
[3732]
|
johnjamesjacoby
|
Use _n() for plural topic and reply counts. Fixes #1605. Props pavelevap for initial patch.
|
[5972]
|
netweb
|
Use HTTPS for w.org links
|
[2848]
|
johnjamesjacoby
|
Use API functions for forum topic/reply recounts. By doing this we're sacrificing performance to get more accurate counts specifically for subforum situations. This will probably need to be revisited in the future when a proper Walker can be used.
|
[4519]
|
johnjamesjacoby
|
Use 'post_parent' instead of 'child_of' in bbp_get_dropdown() usages. See #2061.
|
[2807]
|
johnjamesjacoby
|
Use 'code' CSS class for slug settings
|
[3288]
|
johnjamesjacoby
|
Use 'bbp_admin_init' instead of 'admin_init' in BBP_Admin::_setup_actions()
|
[5312]
|
johnjamesjacoby
|
Use 'array_diff()` rather than `array_intersect()` in `bbp_pre_get_posts_normalize_forum_visibility()` to allow custom `post_type` queries (that still include forums/topics/replies) to pass through without hidden/private forum `meta_data` assistance. Fixes #2471.
|
[2939]
|
johnjamesjacoby
|
Use 'any' for post_parent in bbp-widgets.php to avoid conflict with '0' value.
|
[4571]
|
jmdodd
|
Use $r['topic_id'] to set initial $topic_id value.
* Fixes #2098.
|
[3598]
|
johnjamesjacoby
|
Use $plugin variable in bbp_is_activation()
|
[5471]
|
johnjamesjacoby
|
Use "Unfavorite" in `bbp_get_user_favorites_link()`. Fixes #2604.
|
[4930]
|
johnjamesjacoby
|
Use !WordPress core rewrite API to add rewrite tags, rules, and permalink structures. Replaces the need to merge rewrite rules directly into the $wp_rewrite array on permalink flush. In the future, much of this complexity can be turned into easier to use functions to add new profile pages, etc... Fixes #2336. See #2337.
|
[6891]
|
johnjamesjacoby
|
Upgrades: remove duplicate `wp_cache_flush()` call.
From `bbp_admin_repair_reply_menu_order()`, since repair tools flush the caches anyways, this is not necessary here.
Found during work on #3244.
|
[6896]
|
johnjamesjacoby
|
Upgrades: change skipped upgrades to pending upgrade
* Add functions for managing pending upgrades
* Use IDs instead of strings for active tools tab
* Add classes and `hr` for related H1's
* Update registered option key name
* Add skipped upgrades to pending upgrades array
* Add `span` to allowed tags in notices
These changes are necessary to bring adimn pages up to speed with WordPress Admin UI mark-up, in relation to the database upgrade notice.
See #3244.
|
[6897]
|
johnjamesjacoby
|
Upgrades: append upgrade count to "Tools" if there are pending upgrades
* Add function and method to tweak the `$menu` global
* Add styling for count in `nav-tab-wrapper` UI
This change adds a `span.awaiting-mod` wrapper around the pending upgrade count in a few strategic locations around the WordPress Admin UI.
See #3244.
|
[6890]
|
johnjamesjacoby
|
Upgrades: add support for `version` key in repair tool registration.
This will get used by individual tools, to provide a UI for routines that need to be run between version upgrades.
See #3244.
|
[6894]
|
johnjamesjacoby
|
Upgrades: add support for "Version" filter & links in list table.
* Adds functions for outputting in a table row and select dropdown
* Adds a function to allow special translating of version numbers
* Adds numerous improvements for PHP 7.3 compat
* Adds escaping and formatting in several places where it was previously omitted
* Adds `—` to empty columns
* Adds functions for getting the current page ID
See #3244.
|
[6893]
|
johnjamesjacoby
|
Upgrades: add column width styling to tools list tables.
This ensures that columns are usually wide enough to fit their anticipated contents.
See #3244.
|
[6892]
|
johnjamesjacoby
|
Upgrades: add `version` and update strings to repair tools.
This change adds a version property to the relevant upgrades, and removes some redundant information from each description.
See #3244.
|
[6901]
|
johnjamesjacoby
|
Upgrades: add `empty()` checks to untrusted variable values to avoid debug notices.
This change ensures that menu manipulations are not attempted via admin-area requests where they are not necessary (AJAX, shortinit, etc...) and fixes debug notices under those circumstances.
|
[6895]
|
johnjamesjacoby
|
Upgrades: add "Version" column to upgrades list table.
See #3244.
|
[6926]
|
johnjamesjacoby
|
Upgrades: Link to pending upgrades, if there are any.
This commit modifies the "Upgrade Forums" page by adding Statuses to filter by, specifically for pending upgrades. This allows bbPress to link directly to the upgrades that need doing, rather than the generic page itself.
Along with this commit are accompanying styling tweaks and helper functions to make this functionality possible.
Fixes #3244.
|
[6325]
|
johnjamesjacoby
|
Upgrade: Update PHPDoc of `bbp_setup_updater()`, to reference correct `@uses`.
|
[6243]
|
johnjamesjacoby
|
Upgrade: Introduce `bbp_is_large_install()` to abstract `wp_is_large_network()` which is a multisite-only function.
See #2959.
|
[6242]
|
johnjamesjacoby
|
Upgrade: Do not automatically run the upgrade routine on large installations with many users.
This is basically a no-brainer, and exactly what we've gone through across all of the WordPress.org network already.
See #2959.
|
[5196]
|
johnjamesjacoby
|
Upgrade netweb in humans.txt.
|
[7166]
|
johnjamesjacoby
|
Updates: clean-up & normalize topic & reply update functions.
This commit is non-functional, but rearranges some code so that _update_ functions are more predictable and easier to work with in the future.
See #3389.
|
[4703]
|
johnjamesjacoby
|
Updates to phpBB converter:
* Cleaned whitespace and updated inline docs and phpdoc for consistency accross all import tools.
* Fixed '_bbp_forum_parent_id'
* Added Forum topic count -> '_bbp_topic_count'
* Added Forum reply count -> '_bbp_reply_count'
* Added Forum total topic count -> '_bbp_total_topic_count'
* Added Forum status -> '_bbp_status'
* Fixed Forum dates -> to_type = 'forum' and to_fieldname = 'post_date'
* Fixed Forum dates -> to_type = 'forum' and to_fieldname = 'post_date_gmt',
* Fixed Forum dates -> to_type = 'forum' and to_fieldname = 'post_modified'
* Fixed Forum dates -> to_type = 'forum' and to_fieldname = 'post_modified_gmt'
* Added Topic reply count -> '_bbp_reply_count',
* Added Topic total reply count -> '_bbp_total_reply_count'
* Added Topic date -> '_bbp_last_active_time'
* Added Topic author ip -> '_bbp_author_ip'
* Added phpbb user ICQ -> '_bbp_phpbb_user_icq'
* Added phpbb user MSNM -> '_bbp_phpbb_user_msnm'
* Added phpbb user Jabber -> 'jabber'
* Added phpbb user Occupation -> '_bbp_phpbb_user_occ'
* Added phpbb user Interests -> '_bbp_phpbb_user_interests'
* Added phpbb user Signature -> _bbp_phpbb_user_sig','
* Added phpbb user Location -> '_bbp_phpbb_user_from'
* Added phpbb user avatar filename -> '_bbp_phpbb_user_avatar'
* Added function callback_topic_reply_count
* Added function callback_html (Strips custom phpBB 'magic_url' and 'bbcode_uid' first from $field before parsing $field to parser.php)
* Added bbPress @mentions to converted phpBB [quote] BBCodes
* Props netweb.
* Fixes #1884.
|
[4198]
|
johnjamesjacoby
|
Updater:
* Move bbp_is_deactivation() check out of bbPress class, and into bbpress-functions.php loader.
* Enables all functions and actions to run at deactivation time, allowing caps to be removed, etc...
* Re-enable network updater for capable users. Check if bbPress is active before running versioner.
* Introduce bbp_delete_rewrite_rules() to force a flush on the following page-load without priming rules on the current one.
|
[4526]
|
johnjamesjacoby
|
Updater:
* Move bbPress 1.x role removal out of updater and into BuddyPress's repair tool.
|
[4187]
|
johnjamesjacoby
|
Updater:
* Make bbp_is_update() more verbose for easier debugging.
* Update version updater function to remove deprecated roles, and flush the capabilities.
|
[3914]
|
johnjamesjacoby
|
Updater:
* Fix network admin core update URL.
* Fixes #1830.
|
[5453]
|
netweb
|
Updated verbiage when converting threaded replies, lets call them what they are in bbPress terms, "threaded replies", rather than the abstract term "reply_to".
|
[5428]
|
netweb
|
Updated forum parent ID importing method for compatibility when `wp_bbconverter_translator` database sync_table exists.
* Renamed forum parent meta key `_bbp_forum_parent_id` to `_bbp_old_forum_parent_id` for importers that support forum parents
* Improvements for future iterations of post import meta data manipulation/enhancements with reference only imported post meta keys including a common `_old` prefix as part of the `_bbp` prefix
See #2650
|
[4429]
|
johnjamesjacoby
|
Updated bbpress.pot file.
|
[5343]
|
netweb
|
Updated base admin styles SCSS
* Color scheme support for widget choosers via WP:changeset:28122
* 'About Page' updated styles via WP:changeset:28127
Fixes #2583
|
[5993]
|
netweb
|
Updated admin base SCSS styles:
* `_admin.scss` via WP:changeset:34976, WP:changeset:35265, WP:changeset:36532, and WP:changeset:36619
* `_mixins.scss` via WP:changeset:34948
See #2583
|
[5803]
|
netweb
|
Updated admin base SCSS styles:
* `_admin.scss` via WP:changeset:31747, WP:changeset:31952, and WP:changeset:32075
* `_variables.scss` via WP:changeset:32051
See #2583
|
[6539]
|
netweb
|
Updated admin base SCSS styles:
* `_admin.scss` via WP:changeset:40576
* `_mixins.scss` via WP:changeset:38501
See #2583
|
[5479]
|
netweb
|
Updated `_mixins.scss` via WP:changeset:29616, WP:changeset:29648. See #2583
|
[5882]
|
netweb
|
Updated `_admin.scss` via WP:changeset:33067, WP:changeset:33284, WP:changeset:33285, WP:changeset:33289, WP:changeset:33409, and WP:changeset:33453
See #2583
|
[5635]
|
netweb
|
Updated `_admin.scss` via WP:changeset:31648 for `grunt-sass` v0.18.0 compatibility via r5624 See #2583
|
[5620]
|
netweb
|
Updated `_admin.scss` via WP:changeset:31564. See #2583
|
[5582]
|
netweb
|
Updated `_admin.scss` via WP:changeset:30531. See #2583
|
[5459]
|
netweb
|
Updated `_admin.scss` via WP:changeset:29542. See #2583
|
[5480]
|
netweb
|
Updated `_admin.scss` via WP:changeset:29447, WP:changeset:29542, WP:changeset:29697. See #2583
|
[5447]
|
netweb
|
Updated `_admin.scss` via WP:changeset:29124 and WP:changeset:29287. See #2583
|
[5430]
|
netweb
|
Updated `_admin.scss` via WP:changeset:29031. See #2583
|
[5419]
|
netweb
|
Updated `_admin.scss` via WP:changeset:28861. See #2583
|
[5193]
|
netweb
|
Updated What's New
|
[5090]
|
johnjamesjacoby
|
Updated "About" text for 2.4.
|
[6292]
|
netweb
|
Update: Uses tabs not spaces for indentation in `bbp_add_activation_redirect()`
|
[5498]
|
johnjamesjacoby
|
Update widget description in `BBP_Topics_Widget` to include topic newness. Props netweb. Fixes #2531.
|
[2569]
|
johnjamesjacoby
|
Update voices documentation
|
[4263]
|
johnjamesjacoby
|
Update variable order and inline doc in bbpress.php. See r4262.
|
[6151]
|
johnjamesjacoby
|
Update trunk readme.txt with updated version & changelog for 2.5.12.
|
[6127]
|
johnjamesjacoby
|
Update trunk readme.txt for 2.5.11 release.
|
[3298]
|
johnjamesjacoby
|
Update topic voice recount query to include lead topic post authors. Fixes #1543.
|
[2896]
|
johnjamesjacoby
|
Update topic labels to be more descriptive
|
[5368]
|
johnjamesjacoby
|
Update to tools:
* Update topic & reply count repair tools to only delete the appropriate meta keys from the appropriate parents.
* Include new reply hierarchy repair tool, to fix a possibly poisoned reply hierarchy.
Props netweb. See #2586 (trunk)
|
[5367]
|
johnjamesjacoby
|
Update to tools:
* Update topic & reply count repair tools to only delete the appropriate meta keys from the appropriate parents.
* Include new reply hierarchy repair tool, to fix a possibly poisoned reply hierarchy.
Props netweb. See #2586 (2.5 branch)
|
[5559]
|
johnjamesjacoby
|
Update to newer slashing functions, as our minimum requirement is WordPress 3.6.
Also add filters to topic-title & topic-tags form fields. See #2719.
|
[3041]
|
johnjamesjacoby
|
Update the template notices in form-reply.php and form-topic.php. Fixes #1481.
|
[3929]
|
johnjamesjacoby
|
Update the phpdoc in bbp_template_include_theme_compat() to more accurately describe how overriding the_content works.
|
[3436]
|
johnjamesjacoby
|
Update the green admin style for WordPress 3.2.
|
[6168]
|
xknown
|
Update the backpress svn external to http://backpress.svn.wordpress.org/tags/backpress-1.2.1-bbpress/
See #3033
|
[2958]
|
johnjamesjacoby
|
Update the admin-separator routines to play friendly with BuddyPress, Jetpack, and other plugins that directly modify the amin area menu order.
|
[4745]
|
johnjamesjacoby
|
Update the What's New page.
|
[3565]
|
johnjamesjacoby
|
Update the BuddyPress group extension with working create/edit screens. @todo Saving. See #1669.
|
[5039]
|
johnjamesjacoby
|
Update tags and installation section of readme.txt.
|
[2762]
|
johnjamesjacoby
|
Update svn:ignore rules to include .htaccess and 'my-' directories.
|
[4840]
|
johnjamesjacoby
|
Update some usages of bbp_get_user_id() to fallback to displayed user, if available. Props alex-ye. Fixes #2285.
|
[3877]
|
johnjamesjacoby
|
Update some phpdoc in bbp-admin
|
[5375]
|
johnjamesjacoby
|
Update reply position repair tool to delete invalid `_bbp_reply_to` fields, and tweak name and description. Props netweb. See #2588. (trunk)
|
[5374]
|
johnjamesjacoby
|
Update reply position repair tool to delete invalid `_bbp_reply_to` fields, and tweak name and description. Props netweb. See #2588. (2.5 branch)
|
[3506]
|
johnjamesjacoby
|
Update remaining 'spam' and 'trash' post_status references to use _get_ functions.
|
[6540]
|
johnjamesjacoby
|
Update recent JavaScript formatting changes so they comply with our JSHint rules.
|
[5612]
|
johnjamesjacoby
|
Update readme.txt:
* Modernize verbiage
* Split up `Installation` section for clarity
* Switch links to use `example.com`
* Update tested version to 4.1
* Fix speeling errors
|
[5197]
|
johnjamesjacoby
|
Update readme.txt.
|
[4473]
|
johnjamesjacoby
|
Update readme.txt with 2.2.2 changelog and bump stable tag. (trunk)
|
[4569]
|
johnjamesjacoby
|
Update readme.txt to match 2.2 branch.
|
[5633]
|
johnjamesjacoby
|
Update readme.txt for 2.5.5.
|
[5219]
|
johnjamesjacoby
|
Update readme.txt for 2.5.1. (trunk)
|
[5129]
|
johnjamesjacoby
|
Update readme.txt and version revision in trunk.
|
[5235]
|
johnjamesjacoby
|
Update readme.txt and bump version (trunk)
|
[3977]
|
johnjamesjacoby
|
Update post ID comment in loop-single-reply.php.
|
[7092]
|
johnjamesjacoby
|
Update plugin headers in trunk to include newest supported keys.
Adds "Requires PHP" and "Requires at least" using versions from 2.6.5 (for now.)
Props spacedmonkey.
|