Thomas Bruederli
2016-01-16 699af1e5206ed9114322adaa3c25c1c969640a53
program/include/rcmail_output_html.php
@@ -514,10 +514,10 @@
        // write all javascript commands
        $this->add_script($commands, 'head_top');
        // send clickjacking protection headers
        // allow (legal) iframe content to be loaded
        $iframe = $this->framed || $this->env['framed'];
        if (!headers_sent() && ($xframe = $this->app->config->get('x_frame_options', 'sameorigin'))) {
            header('X-Frame-Options: ' . ($iframe && $xframe == 'deny' ? 'sameorigin' : $xframe));
        if (!headers_sent() && $iframe && $this->app->config->get('x_frame_options', 'sameorigin') === 'deny') {
            header('X-Frame-Options: sameorigin', true);
        }
        // call super method