Moved buffer cleaning

This commit is contained in:
Frey Mansikkaniemi 2020-08-31 05:56:38 +00:00
parent 5a91ae20f5
commit db031403fd

View File

@ -74,8 +74,8 @@ function its_wpf_qrcode_catch()
$nonce = $_REQUEST['_wpnonce']; $nonce = $_REQUEST['_wpnonce'];
if( $qrcode_string && $nonce && wp_verify_nonce( $nonce, ITS_WPF_PLUGIN_ID ) ) if( $qrcode_string && $nonce && wp_verify_nonce( $nonce, ITS_WPF_PLUGIN_ID ) )
{ {
ob_clean(); //Clean the output buffer before printing out image
require_once('libs/phpqrcode.php'); require_once('libs/phpqrcode.php');
ob_clean(); //Clean the output buffer before printing out image
header('Content-Type: image/png'); header('Content-Type: image/png');
QRcode::png($qrcode_string,false,QR_ECLEVEL_H); QRcode::png($qrcode_string,false,QR_ECLEVEL_H);
exit(); exit();