From a3820296e3bba928207fe26feded7c336b171029 Mon Sep 17 00:00:00 2001 From: Frey Mansikkaniemi Date: Sun, 26 Jul 2020 12:49:34 +0800 Subject: [PATCH] Moved the phpqrcode library to a separate libs directory --- is-woo-payment-fps.php | 2 +- phpqrcode.php => libs/phpqrcode.php | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename phpqrcode.php => libs/phpqrcode.php (100%) 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