Skip to:
Content

BuddyPress.org

Ticket #6662: The group profile photo was uploaded successfully.patch

File The group profile photo was uploaded successfully.patch, 900 bytes (added by ramiy, 9 years ago)
  • src/bp-groups/bp-groups-actions.php

     
    340340                        if ( !bp_core_avatar_handle_crop( array( 'object' => 'group', 'avatar_dir' => 'group-avatars', 'item_id' => $bp->groups->current_group->id, 'original_file' => $_POST['image_src'], 'crop_x' => $_POST['x'], 'crop_y' => $_POST['y'], 'crop_w' => $_POST['w'], 'crop_h' => $_POST['h'] ) ) )
    341341                                bp_core_add_message( __( 'There was an error saving the group profile photo, please try uploading again.', 'buddypress' ), 'error' );
    342342                        else
    343                                 bp_core_add_message( __( 'The group profile photo was uploaded successfully!', 'buddypress' ) );
     343                                bp_core_add_message( __( 'The group profile photo was uploaded successfully.', 'buddypress' ) );
    344344                }
    345345        }
    346346