Opened 15 years ago
Closed 14 years ago
#2091 closed defect (bug) (fixed)
ref to non-existent folders in bp-core-avatars.php
Reported by: | mikepratt | Owned by: | |
---|---|---|---|
Milestone: | 1.5 | Priority: | minor |
Severity: | Version: | ||
Component: | Core | Keywords: | has-patch |
Cc: |
Description
line 41-46 ->
if ( !defined( 'BP_AVATAR_DEFAULT' ) )
define( 'BP_AVATAR_DEFAULT', BP_PLUGIN_URL . '/bp-xprofile/images/none.gif' );
if ( !defined( 'BP_AVATAR_DEFAULT_THUMB' ) )
define( 'BP_AVATAR_DEFAULT_THUMB', BP_PLUGIN_URL . '/bp-xprofile/images/none-thumbnail.gif' );
The folder structure is no longer bp-xprofile/images. It is bp-xprofile/admin/images
Additionally, the files none.gif and none-thumbnail.gif are no longer present
Attachments (1)
Change History (3)
Note: See
TracTickets for help on using
tickets.
Just remove the code, as this is the only place
BP_AVATAR_DEFAULT
andBP_AVATAR_DEFAULT_THUMB
are referenced.