Skip to:
Content

bbPress.org


Ignore:
Timestamp:
06/08/2017 01:58:51 AM (7 years ago)
Author:
johnjamesjacoby
Message:

Documentation: Don't hyphenate "bbPress's"

It's cute, and I tend to say it in person to be cute, but in writing it doesn't look very classy.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/common/ajax.php

    r6438 r6498  
    5454
    5555/**
    56  * Hooked to the 'bbp_template_redirect' action, this is bbPress's custom
    57  * theme-side ajax handler.
     56 * Hooked to the 'bbp_template_redirect' action, this is also the custom
     57 * theme-side AJAX handler.
    5858 *
    5959 * @since 2.3.0 bbPress (r4543)
    6060 *
    61  * @return If not a bbPress ajax request
     61 * @return If not a bbPress AJAX request
    6262 */
    6363function bbp_do_ajax() {
    6464
    65     // Bail if not an ajax request
     65    // Bail if not an AJAX request
    6666    if ( ! bbp_is_ajax() ) {
    6767        return;
    6868    }
    6969
    70     // Set WordPress core ajax constant
     70    // Set WordPress core AJAX constant
    7171    define( 'DOING_AJAX', true );
    7272
     
    8585
    8686/**
    87  * Helper method to return JSON response for the ajax calls
     87 * Helper method to return JSON response for the AJAX calls
    8888 *
    8989 * @since 2.3.0 bbPress (r4542)
Note: See TracChangeset for help on using the changeset viewer.