Changeset 5478
- Timestamp:
- 12/10/2011 05:41:44 PM (13 years ago)
- Location:
- trunk/bp-blogs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-blogs/bp-blogs-loader.php
r5474 r5478 193 193 $bp->bp_options_avatar = bp_core_fetch_avatar( array( 194 194 'item_id' => bp_displayed_user_id(), 195 'type' => 'thumb' 195 'type' => 'thumb', 196 'alt' => sprintf( __( 'Profile picture of %s', 'buddypress' ), bp_get_displayed_user_fullname() ) 196 197 ) ); 197 198 $bp->bp_options_title = $bp->displayed_user->fullname; -
trunk/bp-blogs/bp-blogs-template.php
r5380 r5478 273 273 function bp_get_blog_avatar( $args = '' ) { 274 274 global $blogs_template, $bp; 275 275 276 276 $defaults = array( 277 277 'type' => 'full', … … 280 280 'class' => 'avatar', 281 281 'id' => false, 282 'alt' => __( 'Site authored by %s', 'buddypress'),282 'alt' => sprintf( __( 'Profile picture of site author %s', 'buddypress' ), bp_core_get_user_displayname( $blogs_template->blog->admin_user_id ) ), 283 283 'no_grav' => true 284 284 );
Note: See TracChangeset
for help on using the changeset viewer.