[wpmu-trac] [WordPress MU Trac] #1136: Add BLOG_TITLE as option for welcome email text (PATCH)

WordPress MU Trac wpmu-trac at lists.automattic.com
Sat Oct 24 21:09:46 UTC 2009


#1136: Add BLOG_TITLE as option for welcome email text (PATCH)
-------------------------+--------------------------------------------------
 Reporter:  umbrae       |       Owner:  somebody
     Type:  enhancement  |      Status:  new     
 Priority:  normal       |   Milestone:          
Component:  General      |     Version:          
 Severity:  minor        |    Keywords:          
-------------------------+--------------------------------------------------
 I think it's pretty common that you'd want to blog title in the welcome
 email for a blog.

 This is just a little patch that adds support for that.

 {{{
 Index: wpmu-functions.php
 ===================================================================
 --- wpmu-functions.php  (revision 50)
 +++ wpmu-functions.php  (working copy)
 @@ -1549,6 +1549,7 @@
         $user = new WP_User($user_id);

         $welcome_email = str_replace( "SITE_NAME",
 $current_site->site_name, $welcome_email );
 +       $welcome_email = str_replace( "BLOG_TITLE", $title, $welcome_email
 );
         $welcome_email = str_replace( "BLOG_URL", $url, $welcome_email );
         $welcome_email = str_replace( "USERNAME", $user->user_login,
 $welcome_email );
         $welcome_email = str_replace( "PASSWORD", $password,
 $welcome_email );
 }}}

-- 
Ticket URL: <http://trac.mu.wordpress.org/ticket/1136>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser


More information about the wpmu-trac mailing list