From db031403fd47e7f784742680c0e76e34c05750a1 Mon Sep 17 00:00:00 2001 From: Frey Mansikkaniemi Date: Mon, 31 Aug 2020 05:56:38 +0000 Subject: [PATCH] Moved buffer cleaning --- hong-kong-fps-woo-payment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hong-kong-fps-woo-payment.php b/hong-kong-fps-woo-payment.php index 5d5a916..13596e2 100644 --- a/hong-kong-fps-woo-payment.php +++ b/hong-kong-fps-woo-payment.php @@ -74,8 +74,8 @@ function its_wpf_qrcode_catch() $nonce = $_REQUEST['_wpnonce']; 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'); + ob_clean(); //Clean the output buffer before printing out image header('Content-Type: image/png'); QRcode::png($qrcode_string,false,QR_ECLEVEL_H); exit();