<!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>[14051] trunk/wp-admin/options-permalink.php:
  Check the appropriate radio option on the Permalinks page for the Root blog
 ; Display index.php prefixes properly for the root Multisite Blog.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/14051">14051</a></dd>
<dt>Author</dt> <dd>dd32</dd>
<dt>Date</dt> <dd>2010-04-10 11:30:34 +0000 (Sat, 10 Apr 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Check the appropriate radio option on the Permalinks page for the Root blog; Display index.php prefixes properly for the root Multisite Blog. Fixes <a href="http://trac.wordpress.org/ticket/12952">#12952</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminoptionspermalinkphp">trunk/wp-admin/options-permalink.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminoptionspermalinkphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/options-permalink.php (14050 => 14051)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/options-permalink.php        2010-04-10 11:23:21 UTC (rev 14050)
+++ trunk/wp-admin/options-permalink.php        2010-04-10 11:30:34 UTC (rev 14051)
</span><span class="lines">@@ -75,36 +75,33 @@
</span><span class="cx"> $home_path = get_home_path();
</span><span class="cx"> $iis7_permalinks = iis7_supports_permalinks();
</span><span class="cx"> 
</span><ins>+$prefix = '';
+if ( ! got_mod_rewrite() &amp;&amp; ! $iis7_permalinks )
+        $prefix .= '/index.php';
+if ( is_multisite() &amp;&amp; !is_subdomain_install() &amp;&amp; is_main_site() )
+        $prefix .= '/blog';
+
</ins><span class="cx"> if ( isset($_POST['permalink_structure']) || isset($_POST['category_base']) ) {
</span><span class="cx">         check_admin_referer('update-permalink');
</span><span class="cx"> 
</span><span class="cx">         if ( isset( $_POST['permalink_structure'] ) ) {
</span><span class="cx">                 $permalink_structure = $_POST['permalink_structure'];
</span><del>-                if ( ! empty( $permalink_structure ) ) {
-                        $permalink_structure = preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $permalink_structure ) );
-                        if ( is_multisite() &amp;&amp; ! is_subdomain_install() &amp;&amp; is_main_site() )
-                                $permalink_structure = '/blog' . $permalink_structure;
-                }
</del><ins>+                if ( ! empty( $permalink_structure ) )
+                        $permalink_structure = $prefix . preg_replace( '#/+#', '/', '/' . str_replace( '#', '', $permalink_structure ) );
</ins><span class="cx">                 $wp_rewrite-&gt;set_permalink_structure( $permalink_structure );
</span><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         if ( isset( $_POST['category_base'] ) ) {
</span><span class="cx">                 $category_base = $_POST['category_base'];
</span><del>-                if (! empty( $category_base ) ) {
-                        $category_base = preg_replace('#/+#', '/', '/' . str_replace( '#', '', $category_base ) );
-                        if ( is_multisite() &amp;&amp; ! is_subdomain_install() &amp;&amp; is_main_site() )
-                                $category_base = '/blog' . $category_base;
-                }
</del><ins>+                if ( ! empty( $category_base ) )
+                        $category_base = $prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $category_base ) );
</ins><span class="cx">                 $wp_rewrite-&gt;set_category_base( $category_base );
</span><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         if ( isset( $_POST['tag_base'] ) ) {
</span><span class="cx">                 $tag_base = $_POST['tag_base'];
</span><del>-                if ( ! empty( $tag_base ) ) {
-                        $tag_base = preg_replace('#/+#', '/', '/' . str_replace( '#', '', $tag_base ) );
-                        if ( is_multisite() &amp;&amp; ! is_subdomain_install() &amp;&amp; is_main_site() )
-                                $tag_base = '/blog' . $tag_base;
-                }
</del><ins>+                if ( ! empty( $tag_base ) )
+                        $tag_base = $prefix . preg_replace('#/+#', '/', '/' . str_replace( '#', '', $tag_base ) );
</ins><span class="cx">                 $wp_rewrite-&gt;set_tag_base( $tag_base );
</span><span class="cx">         }
</span><span class="cx"> }
</span><span class="lines">@@ -166,16 +163,20 @@
</span><span class="cx">   &lt;p&gt;&lt;?php _e('By default WordPress uses web &lt;abbr title=&quot;Universal Resource Locator&quot;&gt;URL&lt;/abbr&gt;s which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A &lt;a href=&quot;http://codex.wordpress.org/Using_Permalinks&quot;&gt;number of tags are available&lt;/a&gt;, and here are some examples to get you started.'); ?&gt;&lt;/p&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;?php
</span><del>-$prefix = '';
-
</del><span class="cx"> if ( ! got_mod_rewrite() &amp;&amp; ! $iis7_permalinks )
</span><del>-        $prefix = '/index.php';
</del><ins>+        $permalink_structure = preg_replace( '|^/?index\.php|', '', $permalink_structure );
</ins><span class="cx"> 
</span><ins>+if ( is_multisite() &amp;&amp; !is_subdomain_install() &amp;&amp; is_main_site() ) {
+        $permalink_structure = preg_replace( '|^/?blog|', '', $permalink_structure );
+        $category_base = preg_replace( '|^/?blog|', '', $category_base );
+        $tag_base = preg_replace( '|^/?blog|', '', $tag_base );
+}
+
</ins><span class="cx"> $structures = array(
</span><span class="cx">         '',
</span><del>-        $prefix . '/%year%/%monthnum%/%day%/%postname%/',
-        $prefix . '/%year%/%monthnum%/%postname%/',
-        $prefix . '/archives/%post_id%'
</del><ins>+        '/%year%/%monthnum%/%day%/%postname%/',
+        '/%year%/%monthnum%/%postname%/',
+        '/archives/%post_id%'
</ins><span class="cx">         );
</span><span class="cx"> ?&gt;
</span><span class="cx"> &lt;h3&gt;&lt;?php _e('Common settings'); ?&gt;&lt;/h3&gt;
</span><span class="lines">@@ -198,16 +199,12 @@
</span><span class="cx">         &lt;/tr&gt;
</span><span class="cx">         &lt;tr&gt;
</span><span class="cx">                 &lt;th&gt;
</span><del>-                        &lt;label&gt;&lt;input name=&quot;selection&quot; id=&quot;custom_selection&quot; type=&quot;radio&quot; value=&quot;custom&quot; class=&quot;tog&quot;
-                        &lt;?php if ( !in_array($permalink_structure, $structures) ) { ?&gt;
-                        checked=&quot;checked&quot;
-                        &lt;?php } ?&gt;
-                         /&gt;
</del><ins>+                        &lt;label&gt;&lt;input name=&quot;selection&quot; id=&quot;custom_selection&quot; type=&quot;radio&quot; value=&quot;custom&quot; class=&quot;tog&quot; &lt;?php checked( !in_array($permalink_structure, $structures) ); ?&gt; /&gt;
</ins><span class="cx">                         &lt;?php _e('Custom Structure'); ?&gt;
</span><span class="cx">                         &lt;/label&gt;
</span><span class="cx">                 &lt;/th&gt;
</span><span class="cx">                 &lt;td&gt;
</span><del>-                        &lt;?php if ( is_multisite() &amp;&amp; !is_subdomain_install() &amp;&amp; is_main_site() ) { echo &quot;/blog&quot;; $permalink_structure = preg_replace( &quot;|^/?blog|&quot;, &quot;&quot;, $permalink_structure ); }?&gt;
</del><ins>+                        &lt;?php echo $prefix; ?&gt;
</ins><span class="cx">                         &lt;input name=&quot;permalink_structure&quot; id=&quot;permalink_structure&quot; type=&quot;text&quot; value=&quot;&lt;?php echo esc_attr($permalink_structure); ?&gt;&quot; class=&quot;regular-text code&quot; /&gt;
</span><span class="cx">                 &lt;/td&gt;
</span><span class="cx">         &lt;/tr&gt;
</span><span class="lines">@@ -223,11 +220,11 @@
</span><span class="cx"> &lt;table class=&quot;form-table&quot;&gt;
</span><span class="cx">         &lt;tr&gt;
</span><span class="cx">                 &lt;th&gt;&lt;label for=&quot;category_base&quot;&gt;&lt;?php /* translators: prefix for category permalinks */ _e('Category base'); ?&gt;&lt;/label&gt;&lt;/th&gt;
</span><del>-                &lt;td&gt;&lt;?php if ( is_multisite() &amp;&amp; !is_subdomain_install() &amp;&amp; is_main_site() ) { echo &quot;/blog&quot;; $category_base = preg_replace( &quot;|^/?blog|&quot;, &quot;&quot;, $category_base ); }?&gt; &lt;input name=&quot;category_base&quot; id=&quot;category_base&quot; type=&quot;text&quot; value=&quot;&lt;?php echo esc_attr( $category_base ); ?&gt;&quot; class=&quot;regular-text code&quot; /&gt;&lt;/td&gt;
</del><ins>+                &lt;td&gt;&lt;?php echo $prefix; ?&gt; &lt;input name=&quot;category_base&quot; id=&quot;category_base&quot; type=&quot;text&quot; value=&quot;&lt;?php echo esc_attr( $category_base ); ?&gt;&quot; class=&quot;regular-text code&quot; /&gt;&lt;/td&gt;
</ins><span class="cx">         &lt;/tr&gt;
</span><span class="cx">         &lt;tr&gt;
</span><span class="cx">                 &lt;th&gt;&lt;label for=&quot;tag_base&quot;&gt;&lt;?php _e('Tag base'); ?&gt;&lt;/label&gt;&lt;/th&gt;
</span><del>-                &lt;td&gt;&lt;?php if ( is_multisite() &amp;&amp; !is_subdomain_install() &amp;&amp; is_main_site() ) { echo &quot;/blog&quot;; $tag_base = preg_replace( &quot;|^/?blog|&quot;, &quot;&quot;, $tag_base ); }?&gt; &lt;input name=&quot;tag_base&quot; id=&quot;tag_base&quot; type=&quot;text&quot; value=&quot;&lt;?php echo esc_attr($tag_base); ?&gt;&quot; class=&quot;regular-text code&quot; /&gt;&lt;/td&gt;
</del><ins>+                &lt;td&gt;&lt;?php echo $prefix; ?&gt; &lt;input name=&quot;tag_base&quot; id=&quot;tag_base&quot; type=&quot;text&quot; value=&quot;&lt;?php echo esc_attr($tag_base); ?&gt;&quot; class=&quot;regular-text code&quot; /&gt;&lt;/td&gt;
</ins><span class="cx">         &lt;/tr&gt;
</span><span class="cx">         &lt;?php do_settings_fields('permalink', 'optional'); ?&gt;
</span><span class="cx"> &lt;/table&gt;
</span><span class="lines">@@ -239,7 +236,7 @@
</span><span class="cx"> &lt;/p&gt;
</span><span class="cx">   &lt;/form&gt;
</span><span class="cx"> &lt;?php if ( !is_multisite() ) { ?&gt;
</span><del>-&lt;?php if ($iis7_permalinks) :
</del><ins>+&lt;?php if ( $iis7_permalinks ) :
</ins><span class="cx">         if ( isset($_POST['submit']) &amp;&amp; $permalink_structure &amp;&amp; ! $usingpi &amp;&amp; ! $writable ) :
</span><span class="cx">                 if ( file_exists($home_path . 'web.config') ) : ?&gt;
</span><span class="cx"> &lt;p&gt;&lt;?php _e('If your &lt;code&gt;web.config&lt;/code&gt; file were &lt;a href=&quot;http://codex.wordpress.org/Changing_File_Permissions&quot;&gt;writable&lt;/a&gt;, we could do this automatically, but it isn&amp;#8217;t so this is the url rewrite rule you should have in your &lt;code&gt;web.config&lt;/code&gt; file. Click in the field and press &lt;kbd&gt;CTRL + a&lt;/kbd&gt; to select all. Then insert this rule inside of the &lt;code&gt;/&amp;lt;configuration&amp;gt;/&amp;lt;system.webServer&amp;gt;/&amp;lt;rewrite&amp;gt;/&amp;lt;rules&amp;gt;&lt;/code&gt; element in &lt;code&gt;web.config&lt;/code&gt; file.') ?&gt;&lt;/p&gt;
</span></span></pre>
</div>
</div>

</body>
</html>