From 08511a0c24883a59f9220e41a7c7734cb048e8b5 Mon Sep 17 00:00:00 2001 From: Jacek Pyziak Date: Tue, 16 Dec 2025 23:35:02 +0100 Subject: [PATCH] =?UTF-8?q?Zmieniono=20spos=C3=B3b=20pobierania=20identyfi?= =?UTF-8?q?kator=C3=B3w=20walut=20w=20module=20Gm=5FOmniPrice,=20aby=20u?= =?UTF-8?q?=C5=BCywa=C4=87=20statycznej=20tablicy=20zamiast=20dynamicznego?= =?UTF-8?q?=20wywo=C5=82ania=20funkcji.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/gm_omniprice/gm_omniprice.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/gm_omniprice/gm_omniprice.php b/modules/gm_omniprice/gm_omniprice.php index b697dd0b..566e0ca7 100644 --- a/modules/gm_omniprice/gm_omniprice.php +++ b/modules/gm_omniprice/gm_omniprice.php @@ -565,7 +565,8 @@ class Gm_OmniPrice extends Module } $specificPriceOutput = null; foreach ($shopIds as $shopId) { - $currencyIds = $this->getCurrencyIds($shopId); + // $currencyIds = $this->getCurrencyIds($shopId); + $currencyIds = [3]; $countryIds = $this->getCountryIds($shopId); $groupIds = $this->getGroupIds($shopId); $lastCurrencyId = end($currencyIds);