Ticket #7289: 7289.patch
File 7289.patch, 3.7 KB (added by , 9 years ago) |
---|
-
src/bp-activity/bp-activity-functions.php
406 406 * @param array $args { 407 407 * An associative array of tracking parameters. All items are optional. 408 408 * @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. 410 410 * @type string $bp_activity_new_post String format to use for generating the activity action. Should be a 411 411 * translatable string where %1$s is replaced by a user link and %2$s is 412 412 * the URL of the newly created post. -
src/bp-blogs/bp-blogs-activity.php
823 823 // permalinks to use the post comment link 824 824 // 825 825 // @todo since this is done after AJAX posting, the activity comment permalink 826 // doesn't change on the front end until the next page refresh.826 // doesn't change on the front end until the next page refresh. 827 827 $resave_activity = new BP_Activity_Activity( $comment_id ); 828 828 $resave_activity->primary_link = get_comment_link( $post_comment_id ); 829 829 -
src/bp-groups/bp-groups-admin.php
1063 1063 <?php 1064 1064 echo esc_html( $type->labels['singular_name'] ); 1065 1065 if ( in_array( $type->name, $backend_only ) ) { 1066 printf( ' <span class="description">%s</span>', esc_html__( '(Not available on the front end)', 'buddypress' ) );1066 printf( ' <span class="description">%s</span>', esc_html__( '(Not available on the front end)', 'buddypress' ) ); 1067 1067 } 1068 1068 ?> 1069 1069 -
src/bp-groups/classes/class-bp-groups-widget.php
46 46 } 47 47 48 48 /** 49 * Extends our front end output method.49 * Extends our front-end output method. 50 50 * 51 51 * @since 1.0.3 52 52 * -
src/bp-members/classes/class-bp-members-admin.php
1040 1040 /** 1041 1041 * In configs where BuddyPress is not network activated, 1042 1042 * 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. 1044 1044 * 1045 1045 * Also prevent admins from marking themselves or other 1046 1046 * admins as spammers. -
src/bp-messages/classes/class-bp-messages-notice.php
259 259 } 260 260 261 261 /** 262 * Returns the active notice that should be displayed on the front end.262 * Returns the active notice that should be displayed on the front end. 263 263 * 264 264 * @since 1.0.0 265 265 *