N°3416 Updates after code review v2 :)

This commit is contained in:
Pierre Goiffon
2020-12-04 08:43:09 +01:00
parent 3cf16627c1
commit 1304e2eb2d
2 changed files with 20 additions and 4 deletions

View File

@@ -958,7 +958,11 @@ try
if (!empty($sClass) && ($sClass != 'InlineImage') && !empty($id) && !empty($sField))
{
$oKPI = new ExecutionKPI();
$oPage->add_xframe_options(''); // the header is set in page constructor, we reset its value ! See N°3416
// X-Frame http header : set in page constructor, but we need to allow frame integration for this specific page
// so we're resetting its value ! (see N°3416)
$oPage->add_xframe_options('');
ormDocument::DownloadDocument($oPage, $sClass, $id, $sField, 'inline');
$oKPI->ComputeAndReport('Data fetch and format');
}