Index: src/wp-includes/class-wp-editor.php
===================================================================
--- src/wp-includes/class-wp-editor.php	(revision 27948)
+++ src/wp-includes/class-wp-editor.php	(working copy)
@@ -80,6 +80,14 @@
 		) );
 
 		self::$this_tinymce = ( $set['tinymce'] && user_can_richedit() );
+
+		if ( self::$this_tinymce ) {
+			if ( false !== strpos( $editor_id, '[' ) ) {
+				self::$this_tinymce = false;
+				_deprecated_argument( __METHOD__, '3.9', 'TinyMCE editor IDs cannot have brackets.' );
+			}
+		}
+
 		self::$this_quicktags = (bool) $set['quicktags'];
 
 		if ( self::$this_tinymce )
