<!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>[17284] trunk/wp-admin:
  Show the author dropdown in quick edit even when there is only one contributor-or-higher user and the post belongs to someone who no longer has contributor-or-higher access
 .</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/17284">17284</a></dd>
<dt>Author</dt> <dd>markjaquith</dd>
<dt>Date</dt> <dd>2011-01-13 07:14:12 +0000 (Thu, 13 Jan 2011)</dd>
</dl>

<h3>Log Message</h3>
<pre>Show the author dropdown in quick edit even when there is only one contributor-or-higher user and the post belongs to someone who no longer has contributor-or-higher access. fixes <a href="http://trac.wordpress.org/ticket/14420">#14420</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesclasswppostslisttablephp">trunk/wp-admin/includes/class-wp-posts-list-table.php</a></li>
<li><a href="#trunkwpadminjsinlineeditpostdevjs">trunk/wp-admin/js/inline-edit-post.dev.js</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesclasswppostslisttablephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/class-wp-posts-list-table.php (17283 => 17284)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/class-wp-posts-list-table.php        2011-01-13 05:26:06 UTC (rev 17283)
+++ trunk/wp-admin/includes/class-wp-posts-list-table.php        2011-01-13 07:14:12 UTC (rev 17284)
</span><span class="lines">@@ -764,7 +764,7 @@
</span><span class="cx"> 
</span><span class="cx">                         if ( is_super_admin() || current_user_can( $post_type_object-&gt;cap-&gt;edit_others_posts ) ) :
</span><span class="cx">                                 $users_opt = array(
</span><del>-                                        'hide_if_only_one_author' =&gt; true,
</del><ins>+                                        'hide_if_only_one_author' =&gt; false,
</ins><span class="cx">                                         'who' =&gt; 'authors',
</span><span class="cx">                                         'name' =&gt; 'post_author',
</span><span class="cx">                                         'class'=&gt; 'authors',
</span><span class="lines">@@ -775,7 +775,7 @@
</span><span class="cx">                                         $users_opt['show_option_none'] = __( '&amp;mdash; No Change &amp;mdash;' );
</span><span class="cx"> 
</span><span class="cx">                                 if ( $authors = wp_dropdown_users( $users_opt ) ) :
</span><del>-                                        $authors_dropdown  = '&lt;label&gt;';
</del><ins>+                                        $authors_dropdown  = '&lt;label class=&quot;inline-edit-author&quot;&gt;';
</ins><span class="cx">                                         $authors_dropdown .= '&lt;span class=&quot;title&quot;&gt;' . __( 'Author' ) . '&lt;/span&gt;';
</span><span class="cx">                                         $authors_dropdown .= $authors;
</span><span class="cx">                                         $authors_dropdown .= '&lt;/label&gt;';
</span></span></pre></div>
<a id="trunkwpadminjsinlineeditpostdevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/inline-edit-post.dev.js (17283 => 17284)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/inline-edit-post.dev.js        2011-01-13 05:26:06 UTC (rev 17283)
+++ trunk/wp-admin/js/inline-edit-post.dev.js        2011-01-13 07:14:12 UTC (rev 17284)
</span><span class="lines">@@ -146,6 +146,9 @@
</span><span class="cx">                         // author no longer has edit caps, so we need to add them to the list of authors
</span><span class="cx">                         $(':input[name=&quot;post_author&quot;]', editRow).prepend('&lt;option value=&quot;' + $('.post_author', rowData).text() + '&quot;&gt;' + $('#' + t.type + '-' + id + ' .author').text() + '&lt;/option&gt;');
</span><span class="cx">                 }
</span><ins>+                if ( $(':input[name=&quot;post_author&quot;] option', editRow).length == 1 ) {
+                        $('label.inline-edit-author', editRow).hide();
+                }
</ins><span class="cx"> 
</span><span class="cx">                 for ( var f = 0; f &lt; fields.length; f++ ) {
</span><span class="cx">                         $(':input[name=&quot;'+fields[f]+'&quot;]', editRow).val( $('.'+fields[f], rowData).text() );
</span></span></pre>
</div>
</div>

</body>
</html>