From 3a09cc7a64506f51650615f1d7e514fac56cf001 Mon Sep 17 00:00:00 2001 From: Renato Alves Date: Thu, 17 May 2018 16:07:27 -0300 Subject: [PATCH] Fixing lib folder loading --- woo-nfe.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/woo-nfe.php b/woo-nfe.php index 2ff5934..edd2775 100644 --- a/woo-nfe.php +++ b/woo-nfe.php @@ -105,7 +105,7 @@ private function includes() { $composer_path = $this->plugin_dir . 'vendor/autoload.php'; if ( ! file_exists( $composer_path ) ) { - require( $this->plugin_dir . 'lib/client-php/lib/init.php' ); + require( $this->plugin_dir . 'li/client-php/lib/init.php' ); } else { require( $composer_path ); }