Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
PoulainMaxime committed Jan 21, 2025
1 parent c311729 commit 723d085
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion controllers/admin/AdminAjaxPsxMktgWithGoogleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
use PrestaShop\Module\PsxMarketingWithGoogle\Config\Config;
use PrestaShop\Module\PsxMarketingWithGoogle\Conversion\EnhancedConversionToggle;
use PrestaShop\Module\PsxMarketingWithGoogle\Handler\ErrorHandler;
use PrestaShop\Module\PsxMarketingWithGoogle\Http\HttpClient;
use PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\FilterApplication\ProductEnumerator;
use PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\Options\OptionsProviderInterface;
use PrestaShop\Module\PsxMarketingWithGoogle\ProductFilter\Options\Resolver;
Expand All @@ -32,7 +33,6 @@
use PrestaShop\Module\PsxMarketingWithGoogle\Repository\CurrencyRepository;
use PrestaShop\Module\PsxMarketingWithGoogle\Repository\ModuleRepository;
use PrestaShop\Module\PsxMarketingWithGoogle\Repository\ProductRepository;
use PrestaShop\Module\PsxMarketingWithGoogle\Http\HttpClient;

class AdminAjaxPsxMktgWithGoogleController extends ModuleAdminController
{
Expand Down
4 changes: 2 additions & 2 deletions controllers/admin/AdminPsxMktgWithGoogleModuleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ public function initContent()
if (Tools::getValue('message') !== false || Tools::getValue('from') !== false) {
$this->ajax = true;
if (version_compare(_PS_VERSION_, '9.0.0', '>=')) {
$this->content = $this->context->smarty->display($this->module->getLocalPath() . '/views/templates/admin/googlePopin.tpl', null,null, false);
$this->content = $this->context->smarty->display($this->module->getLocalPath() . '/views/templates/admin/googlePopin.tpl');
} else {
$this->content = $this->context->smarty->fetch('module:psxmarketingwithgoogle/views/templates/admin/googlePopin.tpl', null,null, false);
$this->content = $this->context->smarty->fetch('module:psxmarketingwithgoogle/views/templates/admin/googlePopin.tpl');
}

return;
Expand Down

0 comments on commit 723d085

Please sign in to comment.