CKeditorプロジェクトの this の問題と同様に、モジュールを更新した後、CKeditorは埋め込みiframeを削除します。 Drupal 7の最初のコメントには解決策がありますが、Drupal 6.の解決策は見つかりません。
これに対する解決策はありますか?
ckeditor.config.jsにconfig.allowedContent = true;
を追加して、エディターでのHTML要素のフィルタリングを無効にします。
CKEDITOR.editorConfig = function(config) {
config.allowedContent = true;
}