<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[14575] trunk/wp-signup.php: signup cleanup, props ocean90, fixes #13087</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/14575">14575</a></dd>
<dt>Author</dt> <dd>wpmuguru</dd>
<dt>Date</dt> <dd>2010-05-12 00:45:01 +0000 (Wed, 12 May 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>signup cleanup, props ocean90, fixes <a href="http://trac.wordpress.org/ticket/13087">#13087</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpsignupphp">trunk/wp-signup.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpsignupphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-signup.php (14574 => 14575)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-signup.php        2010-05-11 23:58:26 UTC (rev 14574)
+++ trunk/wp-signup.php        2010-05-12 00:45:01 UTC (rev 14575)
</span><span class="lines">@@ -9,7 +9,7 @@
</span><span class="cx"> require_once( ABSPATH . WPINC . '/registration.php' );
</span><span class="cx"> 
</span><span class="cx"> if ( is_array( get_site_option( 'illegal_names' )) &amp;&amp; isset( $_GET[ 'new' ] ) &amp;&amp; in_array( $_GET[ 'new' ], get_site_option( 'illegal_names' ) ) == true ) {
</span><del>-        wp_redirect( &quot;http://{$current_site-&gt;domain}{$current_site-&gt;path}&quot; );
</del><ins>+        wp_redirect( network_home_url() );
</ins><span class="cx">         die();
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -28,10 +28,13 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> if ( !is_main_site() ) {
</span><del>-        wp_redirect( &quot;http://&quot; . $current_site-&gt;domain . $current_site-&gt;path . &quot;wp-signup.php&quot; );
</del><ins>+        wp_redirect( network_home_url( 'wp-signup.php' ) );
</ins><span class="cx">         die();
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+// Fix for page title
+$wp_query-&gt;is_404 = false;
+
</ins><span class="cx"> function wpmu_signup_stylesheet() {
</span><span class="cx">         ?&gt;
</span><span class="cx">         &lt;style type=&quot;text/css&quot;&gt;
</span><span class="lines">@@ -75,7 +78,7 @@
</span><span class="cx">         if ( !is_subdomain_install() )
</span><span class="cx">                 echo '&lt;span class=&quot;prefix_address&quot;&gt;' . $current_site-&gt;domain . $current_site-&gt;path . '&lt;/span&gt;&lt;input name=&quot;blogname&quot; type=&quot;text&quot; id=&quot;blogname&quot; value=&quot;'. esc_attr($blogname) .'&quot; maxlength=&quot;50&quot; /&gt;&lt;br /&gt;';
</span><span class="cx">         else
</span><del>-                echo '&lt;input name=&quot;blogname&quot; type=&quot;text&quot; id=&quot;blogname&quot; value=&quot;'.esc_attr($blogname).'&quot; maxlength=&quot;50&quot; /&gt;&lt;span class=&quot;suffix_address&quot;&gt;.' . $current_site-&gt;domain . $current_site-&gt;path . '&lt;/span&gt;&lt;br /&gt;';
</del><ins>+                echo '&lt;input name=&quot;blogname&quot; type=&quot;text&quot; id=&quot;blogname&quot; value=&quot;'.esc_attr($blogname).'&quot; maxlength=&quot;50&quot; /&gt;&lt;span class=&quot;suffix_address&quot;&gt;.' . $current_site-&gt;domain . '&lt;/span&gt;&lt;br /&gt;';
</ins><span class="cx"> 
</span><span class="cx">         if ( !is_user_logged_in() ) {
</span><span class="cx">                 print '(&lt;strong&gt;' . __( 'Your address will be ' );
</span><span class="lines">@@ -83,7 +86,7 @@
</span><span class="cx">                         print $current_site-&gt;domain . $current_site-&gt;path . __( 'sitename' );
</span><span class="cx">                 else
</span><span class="cx">                         print __( 'domain.' ) . $current_site-&gt;domain . $current_site-&gt;path;
</span><del>-                echo '.&lt;/strong&gt; ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!' ) . '&lt;/p&gt;';
</del><ins>+                echo '.)&lt;/strong&gt; ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!' ) . '&lt;/p&gt;';
</ins><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         // Blog Title
</span><span class="lines">@@ -98,7 +101,7 @@
</span><span class="cx">         &lt;div id=&quot;privacy&quot;&gt;
</span><span class="cx">         &lt;p class=&quot;privacy-intro&quot;&gt;
</span><span class="cx">             &lt;label for=&quot;blog_public_on&quot;&gt;&lt;?php _e('Privacy:') ?&gt;&lt;/label&gt;
</span><del>-            &lt;?php _e('I would like my site to appear in search engines like Google and Technorati, and in public listings around this network.'); ?&gt;
</del><ins>+            &lt;?php _e('Allow my site to appear in search engines like Google, Technorati, and in public listings around this network.'); ?&gt;
</ins><span class="cx">             &lt;div style=&quot;clear:both;&quot;&gt;&lt;/div&gt;
</span><span class="cx">             &lt;label class=&quot;checkbox&quot; for=&quot;blog_public_on&quot;&gt;
</span><span class="cx">                 &lt;input type=&quot;radio&quot; id=&quot;blog_public_on&quot; name=&quot;blog_public&quot; value=&quot;1&quot; &lt;?php if ( !isset( $_POST['blog_public'] ) || $_POST['blog_public'] == '1' ) { ?&gt;checked=&quot;checked&quot;&lt;?php } ?&gt; /&gt;
</span><span class="lines">@@ -137,7 +140,7 @@
</span><span class="cx">         &lt;?php if ( $errmsg = $errors-&gt;get_error_message('user_email') ) { ?&gt;
</span><span class="cx">                 &lt;p class=&quot;error&quot;&gt;&lt;?php echo $errmsg ?&gt;&lt;/p&gt;
</span><span class="cx">         &lt;?php } ?&gt;
</span><del>-        &lt;input name=&quot;user_email&quot; type=&quot;text&quot; id=&quot;user_email&quot; value=&quot;&lt;?php  echo esc_attr($user_email) ?&gt;&quot; maxlength=&quot;200&quot; /&gt;&lt;br /&gt;&lt;?php _e('(We&amp;#8217;ll send your password to this address, so &lt;strong&gt;triple-check it&lt;/strong&gt;.)') ?&gt;
</del><ins>+        &lt;input name=&quot;user_email&quot; type=&quot;text&quot; id=&quot;user_email&quot; value=&quot;&lt;?php  echo esc_attr($user_email) ?&gt;&quot; maxlength=&quot;200&quot; /&gt;&lt;br /&gt;&lt;?php _e('We send your registration email to this address. (Double-check your email address before continuing.)') ?&gt;
</ins><span class="cx">         &lt;?php
</span><span class="cx">         if ( $errmsg = $errors-&gt;get_error_message('generic') ) {
</span><span class="cx">                 echo '&lt;p class=&quot;error&quot;&gt;' . $errmsg . '&lt;/p&gt;';
</span><span class="lines">@@ -177,7 +180,8 @@
</span><span class="cx">                         &lt;?php _e( 'Sites you are already a member of:' ) ?&gt;
</span><span class="cx">                         &lt;ul&gt;
</span><span class="cx">                                 &lt;?php foreach ( $blogs as $blog ) {
</span><del>-                                        echo &quot;&lt;li&gt;&lt;a href='http://&quot; . $blog-&gt;domain . $blog-&gt;path . &quot;'&gt;&quot; . $blog-&gt;domain . $blog-&gt;path . &quot;&lt;/a&gt;&lt;/li&gt;&quot;;
</del><ins>+                                        $home_url = get_home_url( $blog-&gt;userblog_id );
+                                        echo '&lt;li&gt;&lt;a href=&quot;' . esc_url( $home_url ) . '&quot;&gt;' . $home_url . '&lt;/a&gt;&lt;/li&gt;';
</ins><span class="cx">                                 } ?&gt;
</span><span class="cx">                         &lt;/ul&gt;
</span><span class="cx">                 &lt;/p&gt;
</span><span class="lines">@@ -360,15 +364,15 @@
</span><span class="cx">         &lt;h2&gt;&lt;?php printf( __( 'Congratulations! Your new site, %s, is almost ready.' ), &quot;&lt;a href='http://{$domain}{$path}'&gt;{$blog_title}&lt;/a&gt;&quot; ) ?&gt;&lt;/h2&gt;
</span><span class="cx"> 
</span><span class="cx">         &lt;p&gt;&lt;?php _e( 'But, before you can start using your site, &lt;strong&gt;you must activate it&lt;/strong&gt;.' ) ?&gt;&lt;/p&gt;
</span><del>-        &lt;p&gt;&lt;?php printf( __( 'Check your inbox at &lt;strong&gt;%s&lt;/strong&gt; and click the link given. It should arrive within 30 minutes.' ),  $user_email) ?&gt;&lt;/p&gt;
</del><ins>+        &lt;p&gt;&lt;?php printf( __( 'Check your inbox at &lt;strong&gt;%s&lt;/strong&gt; and click the link given.' ),  $user_email) ?&gt;&lt;/p&gt;
</ins><span class="cx">         &lt;p&gt;&lt;?php _e( 'If you do not activate your site within two days, you will have to sign up again.' ); ?&gt;&lt;/p&gt;
</span><span class="cx">         &lt;h2&gt;&lt;?php _e( 'Still waiting for your email?' ); ?&gt;&lt;/h2&gt;
</span><span class="cx">         &lt;p&gt;
</span><span class="cx">                 &lt;?php _e( 'If you haven&amp;#8217;t received your email yet, there are a number of things you can do:' ) ?&gt;
</span><span class="cx">                 &lt;ul id=&quot;noemail-tips&quot;&gt;
</span><del>-                        &lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;?php _e( 'Wait a little longer.  Sometimes delivery of email can be delayed by processes outside of our control.' ) ?&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
-                        &lt;li&gt;&lt;p&gt;&lt;?php _e( 'Check the junk or spam folder of your email client.  Sometime emails wind up there by mistake.' ) ?&gt;&lt;/p&gt;&lt;/li&gt;
-                        &lt;li&gt;&lt;?php printf( __( 'Have you entered your email correctly?  We think it&amp;#8217;s %s but if you have entered it incorrectly, you will not receive it.' ), $user_email ) ?&gt;&lt;/li&gt;
</del><ins>+                        &lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;?php _e( 'Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control.' ) ?&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
+                        &lt;li&gt;&lt;p&gt;&lt;?php _e( 'Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.' ) ?&gt;&lt;/p&gt;&lt;/li&gt;
+                        &lt;li&gt;&lt;?php printf( __( 'Have you entered your email correctly?  You have entered %s, if it&amp;#8217;s incorrect, you will not receive your email.' ), $user_email ) ?&gt;&lt;/li&gt;
</ins><span class="cx">                 &lt;/ul&gt;
</span><span class="cx">         &lt;/p&gt;
</span><span class="cx">         &lt;?php
</span><span class="lines">@@ -383,7 +387,7 @@
</span><span class="cx"> $active_signup = apply_filters( 'wpmu_active_signup', $active_signup ); // return &quot;all&quot;, &quot;none&quot;, &quot;blog&quot; or &quot;user&quot;
</span><span class="cx"> 
</span><span class="cx"> if ( is_super_admin() )
</span><del>-        echo '&lt;div class=&quot;mu_alert&quot;&gt;' . sprintf( __( 'Greetings Site Administrator! You are currently allowing &amp;#8220;%s&amp;#8221; registrations. To change or disable registration go to your &lt;a href=&quot;wp-admin/ms-options.php&quot;&gt;Options page&lt;/a&gt;.' ), $active_signup ) . '&lt;/div&gt;';
</del><ins>+        echo '&lt;div class=&quot;mu_alert&quot;&gt;' . sprintf( __( 'Greetings Site Administrator! You are currently allowing &amp;#8220;%s&amp;#8221; registrations. To change or disable registration go to your &lt;a href=&quot;%s&quot;&gt;Options page&lt;/a&gt;.' ), $active_signup, esc_url( network_admin_url( 'ms-options.php' ) ) ) . '&lt;/div&gt;';
</ins><span class="cx"> 
</span><span class="cx"> $newblogname = isset($_GET['new']) ? strtolower(preg_replace('/^-|-$|[^-a-zA-Z0-9]/', '', $_GET['new'])) : null;
</span><span class="cx"> 
</span><span class="lines">@@ -424,7 +428,7 @@
</span><span class="cx">                         elseif ( is_user_logged_in() == false &amp;&amp; ( $active_signup == 'all' || $active_signup == 'user' ) )
</span><span class="cx">                                 signup_user( $newblogname, $user_email );
</span><span class="cx">                         elseif ( is_user_logged_in() == false &amp;&amp; ( $active_signup == 'blog' ) )
</span><del>-                                _e( 'We are sorry. We are not accepting new registrations at this time.' );
</del><ins>+                                _e( 'Sorry, new registrations are not allowed at this time.' );
</ins><span class="cx">                         else
</span><span class="cx">                                 _e( 'You are logged in already. No need to register again!' );
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>