From cca93f2c6d8b2ccf97b80627c2efa8921ec31a2a Mon Sep 17 00:00:00 2001 From: mDeflotte Date: Thu, 2 Feb 2012 10:40:20 +0000 Subject: [PATCH] // Fix Bug with function ShopUrl::getMainShopDomainSSL git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12925 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/shop/ShopUrl.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/classes/shop/ShopUrl.php b/classes/shop/ShopUrl.php index 0d3880dc9..45695d940 100644 --- a/classes/shop/ShopUrl.php +++ b/classes/shop/ShopUrl.php @@ -149,15 +149,15 @@ class ShopUrlCore extends ObjectModel public static function getMainShopDomainSSL() { - if (!self::$main_domain) + if (!self::$main_domain_ssl) { - $sql = 'SELECT domain + $sql = 'SELECT domain_ssl FROM '._DB_PREFIX_.'shop_url WHERE main = 1 AND id_shop='.Context::getContext()->shop->getID(true); - self::$main_domain = Db::getInstance()->getValue($sql); + self::$main_domain_ssl = Db::getInstance()->getValue($sql); } - return self::$main_domain_ssl; + return self::$main_domain_ssl; } /**