<!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>[15081] trunk/wp-includes/rewrite.php: add rewrites for registration pages,
  fixes #13638</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/15081">15081</a></dd>
<dt>Author</dt> <dd>wpmuguru</dd>
<dt>Date</dt> <dd>2010-05-31 20:50:27 +0000 (Mon, 31 May 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>add rewrites for registration pages, fixes <a href="http://trac.wordpress.org/ticket/13638">#13638</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpincludesrewritephp">trunk/wp-includes/rewrite.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpincludesrewritephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/rewrite.php (15080 => 15081)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/rewrite.php        2010-05-31 20:22:49 UTC (rev 15080)
+++ trunk/wp-includes/rewrite.php        2010-05-31 20:50:27 UTC (rev 15081)
</span><span class="lines">@@ -1576,6 +1576,13 @@
</span><span class="cx">                                                                 '.*wp-feed.php$'        =&gt;        $this-&gt;index . '?feed=feed',
</span><span class="cx">                                                                 '.*wp-commentsrss2.php$'        =&gt;        $this-&gt;index . '?feed=rss2&amp;withcomments=1');
</span><span class="cx"> 
</span><ins>+                // Registration rules
+                $registration_pages = array();
+                if ( is_multisite() &amp;&amp; is_main_site() ) {
+                        $registration_pages['.*wp-signup.php$'] = $this-&gt;index . '?signup=true';
+                        $registration_pages['.*wp-activate.php$'] = $this-&gt;index . '?activate=true';
+                }
+
</ins><span class="cx">                 // Post
</span><span class="cx">                 $post_rewrite = $this-&gt;generate_rewrite_rules($this-&gt;permalink_structure, EP_PERMALINK);
</span><span class="cx">                 $post_rewrite = apply_filters('post_rewrite_rules', $post_rewrite);
</span><span class="lines">@@ -1623,9 +1630,9 @@
</span><span class="cx"> 
</span><span class="cx">                 // Put them together.
</span><span class="cx">                 if ( $this-&gt;use_verbose_page_rules )
</span><del>-                        $this-&gt;rules = array_merge($this-&gt;extra_rules_top, $robots_rewrite, $default_feeds, $page_rewrite, $root_rewrite, $comments_rewrite, $search_rewrite, $category_rewrite, $tag_rewrite, $author_rewrite, $date_rewrite, $post_rewrite, $this-&gt;extra_rules);
</del><ins>+                        $this-&gt;rules = array_merge($this-&gt;extra_rules_top, $robots_rewrite, $default_feeds, $registration_pages, $page_rewrite, $root_rewrite, $comments_rewrite, $search_rewrite, $category_rewrite, $tag_rewrite, $author_rewrite, $date_rewrite, $post_rewrite, $this-&gt;extra_rules);
</ins><span class="cx">                 else
</span><del>-                        $this-&gt;rules = array_merge($this-&gt;extra_rules_top, $robots_rewrite, $default_feeds, $root_rewrite, $comments_rewrite, $search_rewrite, $category_rewrite, $tag_rewrite, $author_rewrite, $date_rewrite, $post_rewrite, $page_rewrite, $this-&gt;extra_rules);
</del><ins>+                        $this-&gt;rules = array_merge($this-&gt;extra_rules_top, $robots_rewrite, $default_feeds, $registration_pages, $root_rewrite, $comments_rewrite, $search_rewrite, $category_rewrite, $tag_rewrite, $author_rewrite, $date_rewrite, $post_rewrite, $page_rewrite, $this-&gt;extra_rules);
</ins><span class="cx"> 
</span><span class="cx">                 do_action_ref_array('generate_rewrite_rules', array(&amp;$this));
</span><span class="cx">                 $this-&gt;rules = apply_filters('rewrite_rules_array', $this-&gt;rules);
</span></span></pre>
</div>
</div>

</body>
</html>