Skip to:
Content

BuddyPress.org

Ticket #7289: 7289.patch

File 7289.patch, 3.7 KB (added by slaFFik, 9 years ago)
  • src/bp-activity/bp-activity-functions.php

     
    406406 * @param array  $args {
    407407 *     An associative array of tracking parameters. All items are optional.
    408408 *     @type string   $bp_activity_admin_filter String to use in the Dashboard > Activity dropdown.
    409  *     @type string   $bp_activity_front_filter String to use in frontend dropdown.
     409 *     @type string   $bp_activity_front_filter String to use in the front-end dropdown.
    410410 *     @type string   $bp_activity_new_post     String format to use for generating the activity action. Should be a
    411411 *                                              translatable string where %1$s is replaced by a user link and %2$s is
    412412 *                                              the URL of the newly created post.
  • src/bp-blogs/bp-blogs-activity.php

     
    823823        // permalinks to use the post comment link
    824824        //
    825825        // @todo since this is done after AJAX posting, the activity comment permalink
    826         // doesn't change on the frontend until the next page refresh.
     826        // doesn't change on the front end until the next page refresh.
    827827        $resave_activity = new BP_Activity_Activity( $comment_id );
    828828        $resave_activity->primary_link = get_comment_link( $post_comment_id );
    829829
  • src/bp-groups/bp-groups-admin.php

     
    10631063                                        <?php
    10641064                                                echo esc_html( $type->labels['singular_name'] );
    10651065                                                if ( in_array( $type->name, $backend_only ) ) {
    1066                                                         printf( ' <span class="description">%s</span>', esc_html__( '(Not available on the frontend)', 'buddypress' ) );
     1066                                                        printf( ' <span class="description">%s</span>', esc_html__( '(Not available on the front end)', 'buddypress' ) );
    10671067                                                }
    10681068                                        ?>
    10691069
  • src/bp-groups/classes/class-bp-groups-widget.php

     
    4646        }
    4747
    4848        /**
    49          * Extends our frontend output method.
     49         * Extends our front-end output method.
    5050         *
    5151         * @since 1.0.3
    5252         *
  • src/bp-members/classes/class-bp-members-admin.php

     
    10401040                                        /**
    10411041                                         * In configs where BuddyPress is not network activated,
    10421042                                         * regular admins cannot mark a user as a spammer on front
    1043                                          * end. This prevent them to do it in backend.
     1043                                         * end. This prevent them to do it in the back end.
    10441044                                         *
    10451045                                         * Also prevent admins from marking themselves or other
    10461046                                         * admins as spammers.
  • src/bp-messages/classes/class-bp-messages-notice.php

     
    259259        }
    260260
    261261        /**
    262          * Returns the active notice that should be displayed on the frontend.
     262         * Returns the active notice that should be displayed on the front end.
    263263         *
    264264         * @since 1.0.0
    265265         *