mirror of
https://github.com/invite-frey/is-woo-payment-fps.git
synced 2025-04-05 14:00:44 +00:00
Bugfix
This commit is contained in:
parent
2c589eda57
commit
544529348a
@ -60,15 +60,18 @@ function its_wpf_add_class( $methods ){
|
|||||||
add_action( 'init', 'its_wpf_qrcode_catch', 0 );
|
add_action( 'init', 'its_wpf_qrcode_catch', 0 );
|
||||||
function its_wpf_qrcode_catch()
|
function its_wpf_qrcode_catch()
|
||||||
{
|
{
|
||||||
$qrcode_string = $_REQUEST['generate_fps_qrcode'];
|
if(isset($_REQUEST['generate_fps_qrcode']) && isset($_REQUEST['_wpnonce']))
|
||||||
$nonce = $_REQUEST['_wpnonce'];
|
|
||||||
if( $qrcode_string && $nonce && wp_verify_nonce( $nonce, ITS_WPF_PLUGIN_ID ) )
|
|
||||||
{
|
{
|
||||||
require_once('libs/phpqrcode.php');
|
$qrcode_string = $_REQUEST['generate_fps_qrcode'];
|
||||||
ob_clean(); //Clean the output buffer before printing out image
|
$nonce = $_REQUEST['_wpnonce'];
|
||||||
header('Content-Type: image/png');
|
if( $qrcode_string && $nonce && wp_verify_nonce( $nonce, ITS_WPF_PLUGIN_ID ) )
|
||||||
QRcode::png($qrcode_string,false,QR_ECLEVEL_H);
|
{
|
||||||
exit();
|
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();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user