[wp-trac] [WordPress Trac] #24804: Tighten up revisions UI metadata

WordPress Trac noreply at wordpress.org
Wed Jul 31 14:09:49 UTC 2013


#24804: Tighten up revisions UI metadata
----------------------------+---------------------
 Reporter:  markjaquith     |       Owner:
     Type:  task (blessed)  |      Status:  closed
 Priority:  normal          |   Milestone:  3.6
Component:  Revisions       |     Version:  3.6
 Severity:  normal          |  Resolution:  fixed
 Keywords:  i18n-change     |
----------------------------+---------------------

Comment (by nacin):

 Replying to [comment:32 pmaiorana]:
 > Losing the ability to see revision history at-a-glance in a multi-author
 setup seems like a misstep.

 I think it's the right call. That said, the revisions meta box can be re-
 enabled via code with:

 {{{
 add_action( 'add_meta_boxes', 'nacin_restore_the_revisions_meta_box' );
 function nacin_restore_the_revisions_meta_box( $post_type, $post ) {
     if ( wp_revisions_enabled( $post ) )
         add_meta_box('revisionsdiv', __('Revisions'),
 'post_revisions_meta_box', null, 'normal' );
 }
 }}}

 I could go for re-enabling the meta box for 3.6, given that it is hidden
 by default anyway. Can remove the bloat in 3.7 after revisions UI gets
 even better. (We'd keep `Revisions: #` and the "Browse" link.) Just a
 matter of uncommenting a function call.

--
Ticket URL: <http://core.trac.wordpress.org/ticket/24804#comment:36>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list