Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
12/10/2012 09:36:05 AM (12 years ago)
Author:
johnjamesjacoby
Message:

Revert r6586:

  • Do not call esc_html() on site_name in sign-up email titles.
  • Do not decode email blogname section of email subjects into HTML entities.
  • For all components with notifications, including deprecated files.
  • Fixes #4401.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-members/bp-members-functions.php

    r6574 r6587  
    13401340    $activate_url = esc_url( $activate_url );
    13411341
    1342     $from_name = ( '' == bp_get_option( 'blogname' ) ) ? __( 'BuddyPress', 'buddypress' ) : esc_html( bp_get_option( 'blogname' ) );
     1342    $from_name = bp_get_option( 'blogname', 'WordPress' );
    13431343
    13441344    $message = sprintf( __( "Thanks for registering! To complete the activation of your account please click the following link:\n\n%1\$s\n\n", 'buddypress' ), $activate_url );
Note: See TracChangeset for help on using the changeset viewer.