diff --git a/wp-admin/edit-form-advanced.php b/wp-admin/edit-form-advanced.php
index d92e8c4..5631d49 100644
a
|
b
|
if ( post_type_supports($post_type, 'editor') ) { |
474 | 474 | <?php wp_editor( $post->post_content, 'content', array( |
475 | 475 | 'dfw' => true, |
476 | 476 | 'tabfocus_elements' => 'insert-media-button,save-post', |
477 | | 'editor_height' => in_array( $post_format, array( 'status', 'aside' ) ) ? 120 : 360 |
| 477 | 'editor_height' => isset( $post_format ) && in_array( $post_format, array( 'status', 'aside' ) ) ? 120 : 360 |
478 | 478 | ) ); ?> |
479 | 479 | <table id="post-status-info" cellspacing="0"><tbody><tr> |
480 | 480 | <td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td> |