TinyMCEの設定でハマる

TinyMCEを使ってみることにしたんだけど、表示アイコンの設定をしても、3行目が消えてくれない。

mode : "textareas",
language : "ja",
theme : "advanced",
plugins : "save,searchreplace,paste,fullscreen",

// Theme options
theme_advanced_buttons1 : "undo,redo,|,cut,copy,paste,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,|,forecolor,backcolor,|,formatselect,fontsizeselect,|,hr,removeformat",
theme_advanced_buttons2 : "search,replace,|,fullscreen,|,link,unlink,anchor,cleanup,code,|,help",


解決法は簡単で、3行目の設定を空白でしてやればよかった。

mode : "textareas",
language : "ja",
theme : "advanced",
plugins : "save,searchreplace,paste,fullscreen",

// Theme options
theme_advanced_buttons1 : "undo,redo,|,cut,copy,paste,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,|,forecolor,backcolor,|,formatselect,fontsizeselect,|,hr,removeformat",
theme_advanced_buttons2 : "search,replace,|,fullscreen,|,link,unlink,anchor,cleanup,code,|,help",
theme_advanced_buttons3 : "", //←この行

デフォルト設定も良し悪しだなあ。