diff --git a/is-woo-payment-fps.php b/is-woo-payment-fps.php index 3ceb2aa..9e92c4a 100644 --- a/is-woo-payment-fps.php +++ b/is-woo-payment-fps.php @@ -75,7 +75,7 @@ function its_wpf_qrcode_catch() if( $qrcode_string && $nonce && wp_verify_nonce( $nonce, ITS_WPF_PLUGIN_ID ) ) { ob_clean(); //Clean the output buffer before printing out image - require_once('phpqrcode.php'); + require_once('libs/phpqrcode.php'); header('Content-Type: image/png'); QRcode::png($qrcode_string); exit(); diff --git a/phpqrcode.php b/libs/phpqrcode.php similarity index 100% rename from phpqrcode.php rename to libs/phpqrcode.php