Ticket #2618: 2618.4.diff
File 2618.4.diff, 574 bytes (added by , 11 years ago) |
---|
-
src/includes/common/functions.php
993 993 * @return string 994 994 */ 995 995 function bbp_get_do_not_reply_address() { 996 $email = 'noreply@' . str_replace( 'www.', '', ltrim( get_home_url(), '^(http|https)://') );996 $email = 'noreply@' . str_replace( array( 'http://', 'https://', 'www.' ), '', get_home_url() ); 997 997 return apply_filters( 'bbp_get_do_not_reply_address', $email ); 998 998 } 999 999