summaryrefslogtreecommitdiffstats
path: root/wp-admin/wpmu-options.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-09-12 15:09:26 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-09-12 15:09:26 +0000
commit7a2ba28084eb8b23f9109473d7c57f14c3a059a2 (patch)
tree141f246e4f37fa2ad1fc29e0c354a882529f706e /wp-admin/wpmu-options.php
parentf6a528fcff7ee7687fcbe7876f140d46648fbb41 (diff)
downloadwordpress-mu-7a2ba28084eb8b23f9109473d7c57f14c3a059a2.tar.gz
wordpress-mu-7a2ba28084eb8b23f9109473d7c57f14c3a059a2.tar.xz
wordpress-mu-7a2ba28084eb8b23f9109473d7c57f14c3a059a2.zip
Added site option "admin_email" and use that for registration and other emails (fixed #113)
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@742 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/wpmu-options.php')
-rw-r--r--wp-admin/wpmu-options.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/wp-admin/wpmu-options.php b/wp-admin/wpmu-options.php
index 76827de..8a5bfd3 100644
--- a/wp-admin/wpmu-options.php
+++ b/wp-admin/wpmu-options.php
@@ -28,6 +28,12 @@ if (isset($_GET['updated'])) {
<?php _e('What you would like to call this website.') ?></td>
</tr>
<tr valign="top">
+ <th scope="row"><?php _e('Site Admin Email:') ?></th>
+ <td><input name="admin_email" type="text" id="admin_email" style="width: 95%" value="<?php echo stripslashes( get_site_option('admin_email') ) ?>" size="45" />
+ <br />
+ <?php _e('Registration and support mails will come from this address. Make it generic like "support@' . echo $current_site->domain . '" or "info@' . echo $current_site->domain . '".') ?></td>
+ </tr>
+ <tr valign="top">
<th scope="row"><?php _e('Welcome Email:') ?></th>
<td><textarea name="welcome_email" id="welcome_email" rows='5' cols='45' style="width: 95%"><?php echo stripslashes( get_site_option('welcome_email') ) ?></textarea>
<br />