Make WordPress Core


Ignore:
Timestamp:
03/25/2009 02:29:22 PM (16 years ago)
Author:
azaozz
Message:

jQuery 1.3.2 and UI 1.7.1, may still have some regressions, add screen columns setting to the write/edit post/page screen options, fixes #8867

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-page-form.php

    r10787 r10834  
    427427<?php if ( 'draft' != $post->post_status ) wp_original_referer_field(true, 'previous'); ?>
    428428
    429 <div id="poststuff" class="metabox-holder">
     429<div id="poststuff" class="metabox-holder<?php echo 2 == $screen_layout_columns ? ' has-right-sidebar' : ''; ?>">
    430430
    431431<div id="side-info-column" class="inner-sidebar">
     
    439439</div>
    440440
    441 <div id="post-body" class="<?php echo $side_meta_boxes ? 'has-sidebar' : ''; ?>">
    442 <div id="post-body-content" class="has-sidebar-content">
    443 
     441<div id="post-body">
    444442<div id="titlediv">
    445443<div id="titlewrap">
     
    459457
    460458<?php the_editor($post->post_content); ?>
    461 <div id="post-status-info">
    462     <span id="wp-word-count" class="alignleft"></span>
    463     <span class="alignright">
     459<table id="post-status-info"><tbody><tr>
     460    <td id="wp-word-count"></td>
     461    <td class="autosave-info">
    464462    <span id="autosave">&nbsp;</span>
    465463
     
    474472    }
    475473?>
    476     </span>
    477     <br class="clear" />
    478 </div>
     474    </td>
     475</tr></tbody></table>
    479476
    480477<?php wp_nonce_field( 'autosave', 'autosavenonce', false ); ?>
     
    495492</div>
    496493</div>
    497 </div>
    498494
    499495</form>
Note: See TracChangeset for help on using the changeset viewer.