Index: branches/RC/core/admin_templates/js/jquery/thickbox/thickbox.js =================================================================== diff -u -r11368 -r11412 --- branches/RC/core/admin_templates/js/jquery/thickbox/thickbox.js (.../thickbox.js) (revision 11368) +++ branches/RC/core/admin_templates/js/jquery/thickbox/thickbox.js (.../thickbox.js) (revision 11412) @@ -289,11 +289,11 @@ $('#TB_closeWindowButton').click(TB.remove); if (params.url.indexOf('TB_inline') != -1) { - $('#TB_ajaxContent').append( $('#' + url_params['inlineId']).children() ); + $('#TB_ajaxContent').html( $('#' + url_params['inlineId']).html() ); $('#TB_window').unload( function () { // move elements back when you're finished - $('#' + url_params['inlineId']).append( $('#TB_ajaxContent').children() ); + $('#' + url_params['inlineId']).html( $('#TB_ajaxContent').html() ); } );