Changeset 13743
- Timestamp:
- 02/28/2024 05:49:21 PM (2 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
-
bp-activity/bp-activity-embeds.php (modified) (3 diffs)
-
bp-members/bp-members-functions.php (modified) (6 diffs)
-
bp-messages/bp-messages-star.php (modified) (1 diff)
-
bp-messages/bp-messages-template.php (modified) (3 diffs)
-
bp-templates/bp-nouveau/includes/template-tags.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-embeds.php
r13517 r13743 129 129 * 130 130 * @since 2.6.0 131 * 131 * 132 132 * @global BP_Activity_Template $activities_template The Activity template loop. 133 133 * … … 167 167 * 168 168 * @since 2.6.0 169 * 169 * 170 170 * @global BP_Activity_Template $activities_template The Activity template loop. 171 * 171 * 172 172 */ 173 173 function bp_activity_embed_media() { … … 357 357 358 358 /** 359 * Make sure the Activity embed template will be used if ne ded.359 * Make sure the Activity embed template will be used if needed. 360 360 * 361 361 * @since 12.0.0 -
trunk/src/bp-members/bp-members-functions.php
r13619 r13743 836 836 837 837 /** 838 * Fires at the end of the process for han lding spammer status.838 * Fires at the end of the process for handling spammer status. 839 839 * 840 840 * @since 1.5.5 … … 1588 1588 * - Is the email address already used? 1589 1589 * - If there are disallowed email domains, is the current domain among them? 1590 * - If there's an email domain whitel est, is the current domain on it?1590 * - If there's an email domain whitelist, is the current domain on it? 1591 1591 * 1592 1592 * @since 1.6.2 … … 1622 1622 } 1623 1623 1624 // Is the email alre day in use?1624 // Is the email already in use? 1625 1625 if ( email_exists( $user_email ) ) { 1626 1626 $errors['in_use'] = 1; … … 2730 2730 'separate_items_with_commas' => _x( 'Separate member types with commas', 'Member type taxonomy separate items with commas label', 'buddypress' ), 2731 2731 'add_or_remove_items' => _x( 'Add or remove member types', 'Member type taxonomy add or remove items label', 'buddypress' ), 2732 'choose_from_most_used' => _x( 'Choose from the most used me ber types', 'Member type taxonomy choose from most used label', 'buddypress' ),2732 'choose_from_most_used' => _x( 'Choose from the most used member types', 'Member type taxonomy choose from most used label', 'buddypress' ), 2733 2733 'not_found' => _x( 'No member types found.', 'Member type taxonomy not found label', 'buddypress' ), 2734 2734 'no_terms' => _x( 'No member types', 'Member type taxonomy no terms label', 'buddypress' ), … … 2900 2900 // Directory slug. 2901 2901 if ( $r['has_directory'] ) { 2902 // A string value is inte preted as the directory slug. Otherwise fall back on member type.2902 // A string value is interpreted as the directory slug. Otherwise fall back on member type. 2903 2903 if ( is_string( $r['has_directory'] ) ) { 2904 2904 $directory_slug = $r['has_directory']; … … 3458 3458 ); 3459 3459 3460 // Create the invitat aion.3460 // Create the invitation. 3461 3461 $invites_class = new BP_Members_Invitation_Manager(); 3462 3462 $created = $invites_class->add_invitation( $inv_args ); -
trunk/src/bp-messages/bp-messages-star.php
r13503 r13743 233 233 * @type int $thread_id The message thread ID. Default: 0. If not zero, this takes precedence over 234 234 * $message_id. 235 * @type int $message_id The indiv udal message ID to star or unstar. Default: 0.235 * @type int $message_id The individual message ID to star or unstar. Default: 0. 236 236 * @type int $user_id The user ID. Defaults to the logged-in user ID. 237 237 * @type bool $bulk Whether to mark all messages in a thread as a certain action. Only relevant -
trunk/src/bp-messages/bp-messages-template.php
r13584 r13743 810 810 * Output the unread messages count for the current inbox. 811 811 * 812 * @since 2.6.x Added the `$user_id` par emeter.812 * @since 2.6.x Added the `$user_id` parameter. 813 813 * 814 814 * @param int $user_id The user ID. … … 820 820 * Get the unread messages count for the current inbox. 821 821 * 822 * @since 2.6.x Added the `$user_id` par emeter.822 * @since 2.6.x Added the `$user_id` parameter. 823 823 * 824 824 * @param int $user_id The user ID. … … 1028 1028 } 1029 1029 /** 1030 * Get the default value fo the Compose content field.1030 * Get the default value for the Compose content field. 1031 1031 * 1032 1032 * Will get a value out of $_POST['content'] if available (ie after a -
trunk/src/bp-templates/bp-nouveau/includes/template-tags.php
r13652 r13743 162 162 163 163 /** 164 * Ou ptut the dismiss type.164 * Output the dismiss type. 165 165 * 166 166 * $type is used to set the data-attr for the button. … … 578 578 579 579 /* 580 * Technically not a component but allows us to check the single group members loop as a sep erate loop.580 * Technically not a component but allows us to check the single group members loop as a separate loop. 581 581 */ 582 582 'members_group' => true,
Note: See TracChangeset
for help on using the changeset viewer.