Index: wp-admin/css/wp-admin.dev.css
===================================================================
--- wp-admin/css/wp-admin.dev.css	(revision 21533)
+++ wp-admin/css/wp-admin.dev.css	(working copy)
@@ -3162,9 +3162,21 @@
 }
 
 #post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
+	height: 11px;
+	margin-top: -11px;
 	top: 20px;
 }
 
+.post-php #wp-content-editor-container .wp_themeSkin .mceStatusbar div {
+	padding: 0;
+	height: 0;
+}
+
+.post-php #wp-content-editor-container .wp_themeSkin .mceStatusbar {
+	border-top: 0;
+	height: 0;
+}
+
 #wp-word-count {
 	display: block;
 	padding: 2px 10px;
Index: wp-admin/edit-form-advanced.php
===================================================================
--- wp-admin/edit-form-advanced.php	(revision 21533)
+++ wp-admin/edit-form-advanced.php	(working copy)
@@ -312,8 +312,18 @@
 <?php if ( post_type_supports($post_type, 'editor') ) { ?>
 <div id="postdivrich" class="postarea">
 
-<?php wp_editor($post->post_content, 'content', array('dfw' => true, 'tabfocus_elements' => 'sample-permalink,post-preview') ); ?>
+<?php
 
+wp_editor( $post->post_content, 'content', array(
+	'dfw' => true,
+	'tabfocus_elements' => 'sample-permalink,post-preview',
+	'tinymce' => array(
+		'theme_advanced_path' => false,
+	) 
+) );
+
+?>
+
 <table id="post-status-info" cellspacing="0"><tbody><tr>
 	<td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td>
 	<td class="autosave-info">
