Changeset 29336 for trunk/src/wp-admin/edit-form-advanced.php
- Timestamp:
- 08/01/2014 02:42:30 AM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/edit-form-advanced.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-advanced.php
r29180 r29336 491 491 if ( post_type_supports($post_type, 'editor') ) { 492 492 ?> 493 <div id="postdivrich" class="postarea edit-form-section ">493 <div id="postdivrich" class="postarea edit-form-section<?php if ( get_user_setting( 'editor_expand', 'on' ) === 'on' ) { echo ' wp-editor-expand'; } ?>"> 494 494 495 495 <?php wp_editor( $post->post_content, 'content', array( … … 500 500 'tinymce' => array( 501 501 'resize' => false, 502 'wp_autoresize_on' => ! empty( $_wp_autoresize_on),502 'wp_autoresize_on' => ( ! empty( $_wp_autoresize_on ) && get_user_setting( 'editor_expand', 'on' ) === 'on' ), 503 503 'add_unload_trigger' => false, 504 504 ),
Note: See TracChangeset
for help on using the changeset viewer.