Changeset 5574 for trunk/bp-core/bp-core-avatars.php
- Timestamp:
- 12/19/2011 10:48:35 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-avatars.php
r5479 r5574 40 40 41 41 if ( !defined( 'BP_AVATAR_DEFAULT' ) ) 42 define( 'BP_AVATAR_DEFAULT', BP_PLUGIN_URL . ' /bp-core/images/mystery-man.jpg' );42 define( 'BP_AVATAR_DEFAULT', BP_PLUGIN_URL . 'bp-core/images/mystery-man.jpg' ); 43 43 44 44 if ( !defined( 'BP_AVATAR_DEFAULT_THUMB' ) ) 45 define( 'BP_AVATAR_DEFAULT_THUMB', BP_PLUGIN_URL . ' /bp-core/images/mystery-man-50.jpg' );45 define( 'BP_AVATAR_DEFAULT_THUMB', BP_PLUGIN_URL . 'bp-core/images/mystery-man-50.jpg' ); 46 46 } 47 47 add_action( 'bp_init', 'bp_core_set_avatar_constants', 3 ); … … 355 355 // No avatar was found, and we've been told not to use a gravatar. 356 356 } else { 357 $gravatar = apply_filters( "bp_core_default_avatar_$object", BP_PLUGIN_URL . ' /bp-core/images/mystery-man.jpg', $params );357 $gravatar = apply_filters( "bp_core_default_avatar_$object", BP_PLUGIN_URL . 'bp-core/images/mystery-man.jpg', $params ); 358 358 } 359 359
Note: See TracChangeset
for help on using the changeset viewer.