<!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>[13480] trunk/wp-includes/canonical.php:
  Dont clobber taxonomy intersections/unions.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13480">13480</a></dd>
<dt>Author</dt> <dd>dd32</dd>
<dt>Date</dt> <dd>2010-02-28 02:49:01 +0000 (Sun, 28 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Dont clobber taxonomy intersections/unions. Only redirects to the canonical url if only one term has been queried. Props scribu for some of the commit. See <a href="http://trac.wordpress.org/ticket/8948">#8948</a></pre>

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

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpincludescanonicalphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/canonical.php (13479 => 13480)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/canonical.php        2010-02-28 01:46:39 UTC (rev 13479)
+++ trunk/wp-includes/canonical.php        2010-02-28 02:49:01 UTC (rev 13480)
</span><span class="lines">@@ -132,18 +132,27 @@
</span><span class="cx">                         $author = get_userdata(get_query_var('author'));
</span><span class="cx">                         if ( false !== $author &amp;&amp; $redirect_url = get_author_posts_url($author-&gt;ID, $author-&gt;user_nicename) )
</span><span class="cx">                                 $redirect['query'] = remove_query_arg('author', $redirect['query']);
</span><del>-                }
</del><ins>+                } elseif ( is_category() || is_tag() || is_tax() ) { // Terms (Tags/categories)
</ins><span class="cx"> 
</span><del>-                // Terms (Tags/categories)
-                if ( is_category() || is_tag() || is_tax() ) {
</del><ins>+                        $term_count = 0;
+                        foreach ( array('category__in', 'category__not_in', 'category__and', 'post__in', 'post__not_in',
+                        'tag__in', 'tag__not_in', 'tag__and', 'tag_slug__in', 'tag_slug__and') as $key )
+                                $term_count += count($wp_query-&gt;query_vars[$key]);
+
</ins><span class="cx">                         $obj = $wp_query-&gt;get_queried_object();
</span><del>-                        if ( !empty($obj-&gt;term_id) &amp;&amp; ( $tax_url = get_term_link((int)$obj-&gt;term_id, $obj-&gt;taxonomy) ) &amp;&amp; !is_wp_error($tax_url) ) {
</del><span class="cx"> 
</span><del>-                                $redirect['query'] = remove_query_arg( array( 'category_name', 'tag', 'cat', 'tag_id', 'term', 'taxonomy'), $redirect['query']);
-                                if ( is_tax() ) { // Custom taxonomies will have a custom query var, remove those too:
</del><ins>+                        if ( $term_count &gt; 1 &amp;&amp; !empty($obj-&gt;term_id) &amp;&amp; ( $tax_url = get_term_link((int)$obj-&gt;term_id, $obj-&gt;taxonomy) ) &amp;&amp; !is_wp_error($tax_url) ) {
+
+                                if ( is_category() ) {
+                                        $redirect['query'] = remove_query_arg( array( 'category_name', 'category', 'cat'), $redirect['query']);
+                                } elseif ( is_tag() ) {
+                                        $redirect['query'] = remove_query_arg( array( 'tag', 'tag_id'), $redirect['query']);
+                                } elseif ( is_tax() ) { // Custom taxonomies will have a custom query var, remove those too:
</ins><span class="cx">                                         $tax = get_taxonomy( $obj-&gt;taxonomy );
</span><span class="cx">                                         if ( false !== $tax-&gt;query_var)
</span><span class="cx">                                                 $redirect['query'] = remove_query_arg($tax-&gt;query_var, $redirect['query']);
</span><ins>+                                        else
+                                                $redirect['query'] = remove_query_arg( array( 'term', 'taxonomy'), $redirect['query']);
</ins><span class="cx">                                 }
</span><span class="cx"> 
</span><span class="cx">                                 $tax_url = parse_url($tax_url);
</span></span></pre>
</div>
</div>

</body>
</html>