Moved the phpqrcode library to a separate libs directory

This commit is contained in:
Frey Mansikkaniemi 2020-07-26 12:49:34 +08:00
parent 6e33c70895
commit a3820296e3
2 changed files with 1 additions and 1 deletions

View File

@ -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();