<!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>[13777] trunk/wp-admin/includes/meta-boxes.php: Tabs are better than spaces
.</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13777">13777</a></dd>
<dt>Author</dt> <dd>dd32</dd>
<dt>Date</dt> <dd>2010-03-20 02:39:58 +0000 (Sat, 20 Mar 2010)</dd>
</dl>
<h3>Log Message</h3>
<pre>Tabs are better than spaces. Whitespace cleanup.</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesmetaboxesphp">trunk/wp-admin/includes/meta-boxes.php</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesmetaboxesphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/meta-boxes.php (13776 => 13777)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/meta-boxes.php        2010-03-20 02:37:16 UTC (rev 13776)
+++ trunk/wp-admin/includes/meta-boxes.php        2010-03-20 02:39:58 UTC (rev 13777)
</span><span class="lines">@@ -13,7 +13,7 @@
</span><span class="cx">         global $action;
</span><span class="cx">
</span><span class="cx">         $post_type = $post->post_type;
</span><del>- $post_type_object = get_post_type_object($post_type);
</del><ins>+        $post_type_object = get_post_type_object($post_type);
</ins><span class="cx">         $type_cap = $post_type_object->capability_type;
</span><span class="cx">         $can_publish = current_user_can("publish_${type_cap}s");
</span><span class="cx"> ?>
</span><span class="lines">@@ -283,19 +283,19 @@
</span><span class="cx"> */
</span><span class="cx"> function post_categories_meta_box( $post, $box ) {
</span><span class="cx">         $defaults = array('taxonomy' => 'category');
</span><del>-         if ( !isset($box['args']) || !is_array($box['args']) )
-                 $args = array();
</del><ins>+        if ( !isset($box['args']) || !is_array($box['args']) )
+                $args = array();
</ins><span class="cx">         else
</span><span class="cx">                 $args = $box['args'];
</span><del>-         extract( wp_parse_args($args, $defaults), EXTR_SKIP );
</del><ins>+        extract( wp_parse_args($args, $defaults), EXTR_SKIP );
</ins><span class="cx">         $tax = get_taxonomy($taxonomy);
</span><span class="cx">
</span><del>-         ?>
-         <div id="taxonomy-<?php echo $taxonomy; ?>" class="categorydiv">
-                 <ul id="<?php echo $taxonomy; ?>-tabs" class="category-tabs">
-                         <li class="tabs"><a href="#<?php echo $taxonomy; ?>-all" tabindex="3"><?php printf( __( 'All %s' ), $tax->label ); ?></a></li>
-                         <li class="hide-if-no-js"><a href="#<?php echo $taxonomy; ?>-pop" tabindex="3"><?php _e( 'Most Used' ); ?></a></li>
-                 </ul>
</del><ins>+        ?>
+        <div id="taxonomy-<?php echo $taxonomy; ?>" class="categorydiv">
+                <ul id="<?php echo $taxonomy; ?>-tabs" class="category-tabs">
+                        <li class="tabs"><a href="#<?php echo $taxonomy; ?>-all" tabindex="3"><?php printf( __( 'All %s' ), $tax->label ); ?></a></li>
+                        <li class="hide-if-no-js"><a href="#<?php echo $taxonomy; ?>-pop" tabindex="3"><?php _e( 'Most Used' ); ?></a></li>
+                </ul>
</ins><span class="cx">
</span><span class="cx">                 <div id="<?php echo $taxonomy; ?>-pop" class="tabs-panel" style="display: none;">
</span><span class="cx">                         <ul id="<?php echo $taxonomy; ?>checklist-pop" class="categorychecklist form-no-clear" >
</span><span class="lines">@@ -309,20 +309,20 @@
</span><span class="cx">                         </ul>
</span><span class="cx">                 </div>
</span><span class="cx">
</span><del>- <?php if ( current_user_can($tax->edit_cap) ) : ?>
-                         <div id="<?php echo $taxonomy; ?>-adder" class="wp-hidden-children">
-                                 <h4><a id="<?php echo $taxonomy; ?>-add-toggle" href="#<?php echo $taxonomy; ?>-add" class="hide-if-no-js" tabindex="3"><?php printf( __( '+ Add New %s' ), $tax->singular_label ); ?></a></h4>
-                                 <p id="<?php echo $taxonomy; ?>-add" class="category-add wp-hidden-child">
-                                         <label class="screen-reader-text" for="new<?php echo $taxonomy; ?>"><?php printf( __( 'Add New %s' ), $tax->singular_label ); ?></label><input type="text" name="new<?php echo $taxonomy; ?>" id="new<?php echo $taxonomy; ?>" class="form-required form-input-tip" value="<?php echo esc_attr( sprintf( 'New %s Name', $tax->singular_label ) ); ?>" tabindex="3" aria-required="true"/>
-                                         <label class="screen-reader-text" for="new<?php echo $taxonomy; ?>_parent"><?php printf( __('Parent %s'), $tax->singular_label ); ?>:</label><?php wp_dropdown_categories( array( 'taxonomy' => $taxonomy, 'hide_empty' => 0, 'name' => 'new'.$taxonomy.'_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => sprintf( __('&mdash; Parent %s &mdash;'), $tax->singular_label ), 'tab_index' => 3 ) ); ?>
-                                         <input type="button" id="<?php echo $taxonomy; ?>-add-submit" class="add:<?php echo $taxonomy ?>checklist:<?php echo $taxonomy ?>-add button category-add-sumbit" value="<?php esc_attr_e( 'Add' ); ?>" tabindex="3" />
-                                         <?php wp_nonce_field( 'add-'.$taxonomy, '_ajax_nonce', false ); ?>
-                                         <span id="<?php echo $taxonomy; ?>-ajax-response"></span>
-                                 </p>
-                         </div>
-                 <?php endif; ?>
-         </div>
-         <?php
</del><ins>+        <?php if ( current_user_can($tax->edit_cap) ) : ?>
+                        <div id="<?php echo $taxonomy; ?>-adder" class="wp-hidden-children">
+                                <h4><a id="<?php echo $taxonomy; ?>-add-toggle" href="#<?php echo $taxonomy; ?>-add" class="hide-if-no-js" tabindex="3"><?php printf( __( '+ Add New %s' ), $tax->singular_label ); ?></a></h4>
+                                <p id="<?php echo $taxonomy; ?>-add" class="category-add wp-hidden-child">
+                                        <label class="screen-reader-text" for="new<?php echo $taxonomy; ?>"><?php printf( __( 'Add New %s' ), $tax->singular_label ); ?></label><input type="text" name="new<?php echo $taxonomy; ?>" id="new<?php echo $taxonomy; ?>" class="form-required form-input-tip" value="<?php echo esc_attr( sprintf( 'New %s Name', $tax->singular_label ) ); ?>" tabindex="3" aria-required="true"/>
+                                        <label class="screen-reader-text" for="new<?php echo $taxonomy; ?>_parent"><?php printf( __('Parent %s'), $tax->singular_label ); ?>:</label><?php wp_dropdown_categories( array( 'taxonomy' => $taxonomy, 'hide_empty' => 0, 'name' => 'new'.$taxonomy.'_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => sprintf( __('&mdash; Parent %s &mdash;'), $tax->singular_label ), 'tab_index' => 3 ) ); ?>
+                                        <input type="button" id="<?php echo $taxonomy; ?>-add-submit" class="add:<?php echo $taxonomy ?>checklist:<?php echo $taxonomy ?>-add button category-add-sumbit" value="<?php esc_attr_e( 'Add' ); ?>" tabindex="3" />
+                                        <?php wp_nonce_field( 'add-'.$taxonomy, '_ajax_nonce', false ); ?>
+                                        <span id="<?php echo $taxonomy; ?>-ajax-response"></span>
+                                </p>
+                        </div>
+                <?php endif; ?>
+        </div>
+        <?php
</ins><span class="cx"> }
</span><span class="cx">
</span><span class="cx">
</span></span></pre>
</div>
</div>
</body>
</html>