Changeset 9974
- Timestamp:
- 06/28/2015 03:27:20 PM (9 years ago)
- Location:
- trunk/src/bp-xprofile
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/bp-xprofile-admin.php
r9827 r9974 691 691 */ 692 692 public function enqueue_scripts( $screen_id ) { 693 if ( ( false === strpos( $screen_id, 'users_page_bp-profile-edit' ) 694 && false === strpos( $screen_id, 'profile_page_bp-profile-edit' ) ) 695 || bp_core_get_root_option( 'bp-disable-avatar-uploads' ) 693 if ( ( false === strpos( $screen_id, 'users_page_bp-profile-edit' ) 694 && false === strpos( $screen_id, 'profile_page_bp-profile-edit' ) ) 695 || bp_core_get_root_option( 'bp-disable-avatar-uploads' ) 696 696 || ! buddypress()->avatar->show_avatars 697 697 || ! bp_attachments_is_wp_version_supported() ) { -
trunk/src/bp-xprofile/classes/class-bp-xprofile-group.php
r9819 r9974 11 11 12 12 class BP_XProfile_Group { 13 13 14 14 /** 15 15 * @since BuddyPress (1.1.0) … … 18 18 */ 19 19 public $id = null; 20 20 21 21 /** 22 22 * @since BuddyPress (1.1.0) … … 25 25 */ 26 26 public $name; 27 27 28 28 /** 29 29 * @since BuddyPress (1.1.0) … … 32 32 */ 33 33 public $description; 34 34 35 35 /** 36 36 * @since BuddyPress (1.1.0) … … 39 39 */ 40 40 public $can_delete; 41 41 42 42 /** 43 43 * @since BuddyPress (1.1.0) … … 46 46 */ 47 47 public $group_order; 48 48 49 49 /** 50 50 * @since BuddyPress (1.1.0)
Note: See TracChangeset
for help on using the changeset viewer.