diff options
| author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-08-12 10:31:20 +0000 |
|---|---|---|
| committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-08-12 10:31:20 +0000 |
| commit | ddde9ef972f25f348b58701c24decf3b62a6fa4d (patch) | |
| tree | da4318afa959d9a7fa7a43235f6968b49c460f6f | |
| parent | 591aed940df18fbb54f57d519f7565ecf4b72b58 (diff) | |
Make invites generic
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@170 7be80a69-a1ef-0310-a953-fb0f7c49ff36
| -rw-r--r-- | wp-inst/wp-content/mu-plugins/invites.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-inst/wp-content/mu-plugins/invites.php b/wp-inst/wp-content/mu-plugins/invites.php index 97b1491..f75a673 100644 --- a/wp-inst/wp-content/mu-plugins/invites.php +++ b/wp-inst/wp-content/mu-plugins/invites.php @@ -88,7 +88,7 @@ into the address bar of your browser)."; VALUES ( NULL, '0', '".md5( strtolower( $email ) )."_invited_by' , 'admin')"; $wpdb->query( $query ); $msg = str_replace( "REGURL", get_settings( "siteurl" ) . "/invite/".md5( $email ), $msg ); - mail( $_POST[ 'email' ], "Your WordPress.com Invitation", $msg, "From: WordPress.com <donotreply@".get_settings( "siteurl" ).">" ); + mail( $_POST[ 'email' ], "Your " . $current_site->site_name . " Invitation", $msg, "From: " . $current_site->site_name . " <donotreply@".get_settings( "siteurl" ).">" ); header( "Location: wpmu-admin.php?result=invitesent" ); die(); } else { |
